58 lines
No EOL
2 KiB
PHP
Executable file
58 lines
No EOL
2 KiB
PHP
Executable file
<?php
|
|
|
|
namespace Twilio\Rest;
|
|
|
|
use Twilio\Rest\Routes\V2;
|
|
|
|
class Routes extends RoutesBase {
|
|
/**
|
|
* @deprecated Use v2->phoneNumbers instead.
|
|
*/
|
|
protected function getPhoneNumbers(): \Twilio\Rest\Routes\V2\PhoneNumberList {
|
|
echo "phoneNumbers is deprecated. Use v2->phoneNumbers instead.";
|
|
return $this->v2->phoneNumbers;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v2->phoneNumbers(\$phoneNumber) instead.
|
|
* @param string $phoneNumber The phone number
|
|
*/
|
|
protected function contextPhoneNumbers(string $phoneNumber): \Twilio\Rest\Routes\V2\PhoneNumberContext {
|
|
echo "phoneNumbers(\$phoneNumber) is deprecated. Use v2->phoneNumbers(\$phoneNumber) instead.";
|
|
return $this->v2->phoneNumbers($phoneNumber);
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v2->sipDomains instead.
|
|
*/
|
|
protected function getSipDomains(): \Twilio\Rest\Routes\V2\SipDomainList {
|
|
echo "sipDomains is deprecated. Use v2->sipDomains instead.";
|
|
return $this->v2->sipDomains;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v2->sipDomains(\$sipDomain) instead.
|
|
* @param string $sipDomain The sip_domain
|
|
*/
|
|
protected function contextSipDomains(string $sipDomain): \Twilio\Rest\Routes\V2\SipDomainContext {
|
|
echo "sipDomains(\$sipDomain) is deprecated. Use v2->sipDomains(\$sipDomain) instead.";
|
|
return $this->v2->sipDomains($sipDomain);
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v2->trunks instead.
|
|
*/
|
|
protected function getTrunks(): \Twilio\Rest\Routes\V2\TrunkList {
|
|
echo "trunks is deprecated. Use v2->trunks instead.";
|
|
return $this->v2->trunks;
|
|
}
|
|
|
|
/**
|
|
* @deprecated Use v2->trunks(\$sipTrunkDomain instead.
|
|
* @param string $sipTrunkDomain The SIP Trunk
|
|
*/
|
|
protected function contextTrunks(string $sipTrunkDomain): \Twilio\Rest\Routes\V2\TrunkContext {
|
|
echo "trunks(\$sipTrunkDomain) is deprecated. Use v2->trunks(\$sipTrunkDomain instead.";
|
|
return $this->v2->trunks($sipTrunkDomain);
|
|
}
|
|
} |