1
0
Fork 0
mirror of synced 2025-03-30 04:00:22 +03:00
api-client-php/lib/RetailCrm/Methods/V3/Statistic.php
2020-12-15 13:32:52 +03:00

41 lines
722 B
PHP

<?php
/**
* PHP version 5.4
*
* Statistic
*
* @category RetailCrm
* @package RetailCrm
*/
namespace RetailCrm\Methods\V3;
/**
* PHP version 5.4
*
* Statistic class
*
* @category RetailCrm
* @package RetailCrm
*/
trait Statistic
{
/**
* Update CRM basic statistic
*
* @throws \InvalidArgumentException
* @throws \RetailCrm\Exception\CurlException
* @throws \RetailCrm\Exception\InvalidJsonException
*
* @return \RetailCrm\Response\ApiResponse
*/
public function statisticUpdate()
{
/* @noinspection PhpUndefinedMethodInspection */
return $this->client->makeRequest(
'/statistic/update',
"GET"
);
}
}