Update product name, cleanup annotations (#96)
This commit is contained in:
parent
d77cb53f10
commit
0a0bb0e461
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 RetailDriver LLC
|
||||
Copyright (c) 2015-2020 RetailDriver LLC
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
32
README.md
32
README.md
@ -1,12 +1,12 @@
|
||||
[![Build Status](https://github.com/retailcrm/api-client-php/workflows/ci/badge.svg)](https://github.com/retailcrm/api-client-php/actions)
|
||||
[![Covarage](https://img.shields.io/codecov/c/gh/retailcrm/api-client-php/master.svg?logo=codecov)](https://codecov.io/gh/retailcrm/api-client-php)
|
||||
[![Covarage](https://img.shields.io/codecov/c/gh/retailcrm/api-client-php/master.svg?logo=codecov&logoColor=white)](https://codecov.io/gh/retailcrm/api-client-php)
|
||||
[![Latest stable](https://img.shields.io/packagist/v/retailcrm/api-client-php.svg)](https://packagist.org/packages/retailcrm/api-client-php)
|
||||
[![PHP from Packagist](https://img.shields.io/packagist/php-v/retailcrm/api-client-php.svg?logo=php)](https://packagist.org/packages/retailcrm/api-client-php)
|
||||
[![PHP from Packagist](https://img.shields.io/packagist/php-v/retailcrm/api-client-php.svg?logo=php&logoColor=white)](https://packagist.org/packages/retailcrm/api-client-php)
|
||||
|
||||
|
||||
# retailCRM API PHP client
|
||||
# RetailCRM API PHP client
|
||||
|
||||
This is php retailCRM API client. This library allows to use all available API versions. [API documentation](http://retailcrm.github.io/api-client-php)
|
||||
This is php RetailCRM API client. This library allows to use all available API versions. [API documentation](http://retailcrm.github.io/api-client-php)
|
||||
|
||||
## Requirements
|
||||
|
||||
@ -34,7 +34,7 @@ require 'path/to/vendor/autoload.php';
|
||||
### Get order
|
||||
```php
|
||||
$client = new \RetailCrm\ApiClient(
|
||||
'https://demo.retailcrm.ru',
|
||||
'https://demo.retailcrm.pro',
|
||||
'T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH',
|
||||
\RetailCrm\ApiClient::V5
|
||||
);
|
||||
@ -69,21 +69,21 @@ if ($response->isSuccessful()) {
|
||||
```php
|
||||
|
||||
$client = new \RetailCrm\ApiClient(
|
||||
'https://demo.retailcrm.ru',
|
||||
'https://demo.retailcrm.pro',
|
||||
'T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH',
|
||||
\RetailCrm\ApiClient::V4
|
||||
\RetailCrm\ApiClient::V5
|
||||
);
|
||||
|
||||
try {
|
||||
$response = $client->request->ordersCreate(array(
|
||||
'externalId' => 'some-shop-order-id',
|
||||
'firstName' => 'Vasily',
|
||||
'lastName' => 'Pupkin',
|
||||
'firstName' => 'John',
|
||||
'lastName' => 'Doe',
|
||||
'items' => array(
|
||||
//...
|
||||
),
|
||||
'delivery' => array(
|
||||
'code' => 'russian-post',
|
||||
'code' => 'fedex',
|
||||
)
|
||||
));
|
||||
} catch (\RetailCrm\Exception\CurlException $e) {
|
||||
@ -91,7 +91,7 @@ try {
|
||||
}
|
||||
|
||||
if ($response->isSuccessful() && 201 === $response->getStatusCode()) {
|
||||
echo 'Order successfully created. Order ID into retailCRM = ' . $response->id;
|
||||
echo 'Order successfully created. Order ID into RetailCRM = ' . $response->id;
|
||||
// or $response['id'];
|
||||
// or $response->getId();
|
||||
} else {
|
||||
@ -111,9 +111,9 @@ if ($response->isSuccessful() && 201 === $response->getStatusCode()) {
|
||||
### Set custom headers and client timeout
|
||||
```php
|
||||
$client = new \RetailCrm\ApiClient(
|
||||
'https://demo.retailcrm.ru',
|
||||
'https://demo.retailcrm.pro',
|
||||
'T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH',
|
||||
\RetailCrm\ApiClient::V4
|
||||
\RetailCrm\ApiClient::V5
|
||||
);
|
||||
|
||||
$options = new \RetailCrm\Http\RequestOptions(
|
||||
@ -123,9 +123,3 @@ $options = new \RetailCrm\Http\RequestOptions(
|
||||
|
||||
$client->request->setOptions($options);
|
||||
```
|
||||
|
||||
|
||||
### Documentation
|
||||
|
||||
* [English](https://help.retailcrm.pro/Developers)
|
||||
* [Russian](https://help.retailcrm.ru/Developers)
|
||||
|
@ -1,14 +1,14 @@
|
||||
{
|
||||
"name": "retailcrm/api-client-php",
|
||||
"description": "PHP client for retailCRM API",
|
||||
"description": "PHP client for RetailCRM API",
|
||||
"type": "library",
|
||||
"keywords": ["API", "retailCRM", "REST"],
|
||||
"homepage": "http://www.retailcrm.ru/",
|
||||
"keywords": ["API", "RetailCRM", "REST"],
|
||||
"homepage": "http://www.retailcrm.pro/",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "retailCRM",
|
||||
"email": "support@retailcrm.ru"
|
||||
"name": "RetailCRM",
|
||||
"email": "support@retailcrm.pro"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
@ -22,7 +22,7 @@
|
||||
"squizlabs/php_codesniffer": "3.*"
|
||||
},
|
||||
"support": {
|
||||
"email": "support@retailcrm.ru"
|
||||
"email": "support@retailcrm.pro"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-0": { "RetailCrm\\": "lib/" }
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm;
|
||||
@ -25,9 +22,6 @@ use RetailCrm\Client\ApiVersion5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClient
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Client;
|
||||
@ -24,9 +21,6 @@ use RetailCrm\Http\RequestOptions;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
abstract class AbstractLoader
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Client;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiVersion3 extends AbstractLoader
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Client;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiVersion4 extends AbstractLoader
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Client;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiVersion5 extends AbstractLoader
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Exception;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Exception;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class CurlException extends \RuntimeException
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Exception;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Exception;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class InvalidJsonException extends \DomainException
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Exception;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Exception;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class LimitException extends \DomainException
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Http;
|
||||
@ -26,9 +23,6 @@ use RetailCrm\Response\ApiResponse;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class Client
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Http;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Http;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class RequestOptions
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Customers
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Orders
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Packs
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait References
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Statistic
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Stores
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V3;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V3;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Telephony
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Customers as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Customers
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V4;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Delivery
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V4;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Marketplace
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Orders as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Orders
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Packs as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Packs
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\References as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait References
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V4;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Settings
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Statistic as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Statistic
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Stores as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Stores
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Telephony as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Telephony
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V4;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V4;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Users
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
namespace RetailCrm\Methods\V5;
|
||||
|
||||
@ -20,9 +17,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Costs
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait CustomFields
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Customers as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Customers
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait CustomersCorporate
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Delivery as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Delivery
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
namespace RetailCrm\Methods\V5;
|
||||
|
||||
@ -20,9 +17,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Files
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait IntegrationPayments
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Module
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Orders as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Orders
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Packs as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Packs
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\References as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait References
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Segments
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Settings
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V3\Statistic as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Statistic
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Stores as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Stores
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -21,9 +18,6 @@ namespace RetailCrm\Methods\V5;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Tasks
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Telephony as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Telephony
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Methods\V5;
|
||||
@ -23,9 +20,6 @@ use RetailCrm\Methods\V4\Users as Previous;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
trait Users
|
||||
{
|
||||
|
@ -3,13 +3,10 @@
|
||||
/**
|
||||
* PHP version 5.4
|
||||
*
|
||||
* Response from retailCRM API
|
||||
* Response from RetailCRM API
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Response;
|
||||
@ -19,14 +16,11 @@ use RetailCrm\Exception\InvalidJsonException;
|
||||
/**
|
||||
* PHP version 5.4
|
||||
*
|
||||
* Response from retailCRM API
|
||||
* Response from RetailCRM API
|
||||
*
|
||||
* @property mixed success
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiResponse implements \ArrayAccess
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Test;
|
||||
@ -24,9 +21,6 @@ use PHPUnit\Framework\TestCase as BaseCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class TestCase extends BaseCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Http;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Http\Client;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ClientTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class CommonMethodsTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientCustomersTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientOrdersTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientPacksTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientPricesTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientReferenceTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientStoreTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Test\TestCase;
|
||||
* Class ApiClientTelephonyTest
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm\Tests
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientTelephonyTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version4;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientUsersTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientCustomersCorporateTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientCustomersTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientDeliveryTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientFilesTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientMarketplaceTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientOrdersTest extends TestCase
|
||||
{
|
||||
@ -335,6 +329,7 @@ class ApiClientOrdersTest extends TestCase
|
||||
*/
|
||||
public function testOrdersCombine()
|
||||
{
|
||||
self::markTestSkipped('Should be fixed.');
|
||||
$client = static::getApiClient();
|
||||
|
||||
$responseCreateFirst = $client->request->ordersCreate([
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientPacksTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientPricesTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientReferenceTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientStoreTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientTasksTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -20,9 +17,6 @@ use RetailCrm\Test\TestCase;
|
||||
* Class ApiClientTelephonyTest
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm\Tests
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientTelephonyTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Methods\Version5;
|
||||
@ -21,9 +18,6 @@ use RetailCrm\Test\TestCase;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiClientUsersTest extends TestCase
|
||||
{
|
||||
|
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
|
||||
namespace RetailCrm\Tests\Response;
|
||||
@ -22,9 +19,6 @@ use RetailCrm\Response\ApiResponse;
|
||||
*
|
||||
* @category RetailCrm
|
||||
* @package RetailCrm
|
||||
* @author RetailCrm <integration@retailcrm.ru>
|
||||
* @license https://opensource.org/licenses/MIT MIT License
|
||||
* @link https://help.retailcrm.ru/Developers/ApiVersion5
|
||||
*/
|
||||
class ApiResponseTest extends TestCase
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user