|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/globalaudiovideo/shop.globalaudiovideo.co.in/vendor/twilio/sdk/src/Twilio/Rest/ |
Upload File : |
<?php
namespace Twilio\Rest;
use Twilio\Rest\Studio\V2;
class Studio extends StudioBase {
/**
* @deprecated Use v2->flows instead.
*/
protected function getFlows(): \Twilio\Rest\Studio\V2\FlowList {
echo "flows is deprecated. Use v2->flows instead.";
return $this->v2->flows;
}
/**
* @deprecated Use v2->flows(\$sid) instead.
* @param string $sid The SID that identifies the resource to fetch
*/
protected function contextFlows(string $sid): \Twilio\Rest\Studio\V2\FlowContext {
echo "flows(\$sid) is deprecated. Use v2->flows(\$sid) instead.";
return $this->v2->flows($sid);
}
/**
* @deprecated Use v2->flowValidate instead.
*/
protected function getFlowValidate(): \Twilio\Rest\Studio\V2\FlowValidateList {
echo "flowValidate is deprecated. Use v2->flowValidate instead.";
return $this->v2->flowValidate;
}
}