2017-06-22 00:55:08 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP version 5.4
|
|
|
|
*
|
|
|
|
* Telephony
|
|
|
|
*
|
|
|
|
* @category RetailCrm
|
|
|
|
* @package RetailCrm
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace RetailCrm\Methods\V5;
|
|
|
|
|
|
|
|
use RetailCrm\Methods\V4\Telephony as Previous;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* PHP version 5.4
|
|
|
|
*
|
|
|
|
* Telephony class
|
|
|
|
*
|
|
|
|
* @category RetailCrm
|
|
|
|
* @package RetailCrm
|
|
|
|
*/
|
|
|
|
trait Telephony
|
|
|
|
{
|
|
|
|
use Previous;
|
2017-11-17 15:02:54 +03:00
|
|
|
|
2018-02-20 17:50:45 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $code integration code
|
|
|
|
*/
|
2017-11-17 15:02:54 +03:00
|
|
|
public function telephonySettingsGet($code)
|
|
|
|
{
|
2018-02-20 17:50:45 +03:00
|
|
|
throw new \InvalidArgumentException("This method is not available, setting code: $code is unnecessary");
|
2017-11-17 15:02:54 +03:00
|
|
|
}
|
2017-06-22 00:55:08 +03:00
|
|
|
}
|