28 lines
318 B
PHP
28 lines
318 B
PHP
<?php
|
|
|
|
/**
|
|
* PHP version 5.4
|
|
*
|
|
* Telephony
|
|
*
|
|
* @category RetailCrm
|
|
* @package RetailCrm
|
|
*/
|
|
|
|
namespace RetailCrm\Methods\V4;
|
|
|
|
use RetailCrm\Methods\V3\Telephony as Previous;
|
|
|
|
/**
|
|
* PHP version 5.4
|
|
*
|
|
* Telephony class
|
|
*
|
|
* @category RetailCrm
|
|
* @package RetailCrm
|
|
*/
|
|
trait Telephony
|
|
{
|
|
use Previous;
|
|
}
|