Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
twilio
/
sdk
/
src
/
Twilio
/
Rest
:
FrontlineApi.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Twilio\Rest; use Twilio\Rest\FrontlineApi\V1; class FrontlineApi extends FrontlineApiBase { /** * @deprecated Use v1->users instead. */ protected function getUsers(): \Twilio\Rest\FrontlineApi\V1\UserList { echo "users is deprecated. Use v1->users instead."; return $this->v1->users; } /** * @deprecated Use v1->users(\$sid) instead. * @param string $sid The SID of the User resource to fetch */ protected function contextUsers(string $sid): \Twilio\Rest\FrontlineApi\V1\UserContext { echo "users(\$sid) is deprecated. Use v1->users(\$sid) instead."; return $this->v1->users($sid); } }