diff --git a/CHANGELOG.md b/CHANGELOG.md index 90e755d9..65a57bc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2024-04-27 v.6.5.16 +- Обновлены аннотации в коде модуля + ## 2024-04-23 v.6.5.15 - Добавлена передача услуг через ICML каталог diff --git a/intaro.retailcrm/classes/general/AbstractBuilder.php b/intaro.retailcrm/classes/general/AbstractBuilder.php index 7dc7a063..6401383c 100644 --- a/intaro.retailcrm/classes/general/AbstractBuilder.php +++ b/intaro.retailcrm/classes/general/AbstractBuilder.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class AbstractBuilder + * + * @category RetailCRM + * @package RetailCRM */ abstract class AbstractBuilder { diff --git a/intaro.retailcrm/classes/general/AddressBuilder.php b/intaro.retailcrm/classes/general/AddressBuilder.php index 9416bf2e..4d8e64b9 100644 --- a/intaro.retailcrm/classes/general/AddressBuilder.php +++ b/intaro.retailcrm/classes/general/AddressBuilder.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class AddressBuilder + * + * @category RetailCRM + * @package RetailCRM */ class AddressBuilder extends AbstractBuilder implements RetailcrmBuilderInterface { diff --git a/intaro.retailcrm/classes/general/ApiClient_v5.php b/intaro.retailcrm/classes/general/ApiClient_v5.php index 26c9985e..cfcb3d89 100644 --- a/intaro.retailcrm/classes/general/ApiClient_v5.php +++ b/intaro.retailcrm/classes/general/ApiClient_v5.php @@ -1,12 +1,12 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs */ namespace RetailCrm; @@ -17,12 +17,10 @@ use RetailCrm\Http\Client; use RetailCrm\Response\ApiResponse; /** - * PHP version 5.3 - * * API client class * * @category RetailCRM - * @package RetailCRM + * @package RetailCRM */ class ApiClient { diff --git a/intaro.retailcrm/classes/general/CorporateCustomerBuilder.php b/intaro.retailcrm/classes/general/CorporateCustomerBuilder.php index dc087c67..074d5293 100644 --- a/intaro.retailcrm/classes/general/CorporateCustomerBuilder.php +++ b/intaro.retailcrm/classes/general/CorporateCustomerBuilder.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class CorporateCustomerBuilder + * + * @category RetailCRM + * @package RetailCRM */ class CorporateCustomerBuilder extends AbstractBuilder implements RetailcrmBuilderInterface { diff --git a/intaro.retailcrm/classes/general/CustomerBuilder.php b/intaro.retailcrm/classes/general/CustomerBuilder.php index 3f4b5d38..e5a38f3b 100644 --- a/intaro.retailcrm/classes/general/CustomerBuilder.php +++ b/intaro.retailcrm/classes/general/CustomerBuilder.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class CustomerBuilder + * + * @category RetailCRM + * @package RetailCRM */ class CustomerBuilder extends AbstractBuilder implements RetailcrmBuilderInterface { diff --git a/intaro.retailcrm/classes/general/Exception/CurlException.php b/intaro.retailcrm/classes/general/Exception/CurlException.php index 08a09247..71d95a46 100644 --- a/intaro.retailcrm/classes/general/Exception/CurlException.php +++ b/intaro.retailcrm/classes/general/Exception/CurlException.php @@ -1,7 +1,22 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace RetailCrm\Exception; +/** + * Class CurlException + * + * @category RetailCRM + * @package RetailCRM\Exception + */ class CurlException extends \RuntimeException { } diff --git a/intaro.retailcrm/classes/general/Exception/InvalidJsonException.php b/intaro.retailcrm/classes/general/Exception/InvalidJsonException.php index 979d12e7..ae9d5304 100644 --- a/intaro.retailcrm/classes/general/Exception/InvalidJsonException.php +++ b/intaro.retailcrm/classes/general/Exception/InvalidJsonException.php @@ -1,7 +1,22 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace RetailCrm\Exception; +/** + * Class InvalidJsonException + * + * @category RetailCRM + * @package RetailCRM\Exception + */ class InvalidJsonException extends \DomainException { } diff --git a/intaro.retailcrm/classes/general/Http/Client.php b/intaro.retailcrm/classes/general/Http/Client.php index f0bf53e5..cf1ccba5 100644 --- a/intaro.retailcrm/classes/general/Http/Client.php +++ b/intaro.retailcrm/classes/general/Http/Client.php @@ -1,12 +1,12 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs */ namespace RetailCrm\Http; @@ -16,12 +16,10 @@ use RetailCrm\Exception\InvalidJsonException; use RetailCrm\Response\ApiResponse; /** - * PHP version 5.3 - * - * HTTP client + * Class Client * * @category RetailCRM - * @package RetailCRM + * @package RetailCRM\Http */ class Client { diff --git a/intaro.retailcrm/classes/general/Logger.php b/intaro.retailcrm/classes/general/Logger.php index ed85a065..75c5f687 100644 --- a/intaro.retailcrm/classes/general/Logger.php +++ b/intaro.retailcrm/classes/general/Logger.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class Logger + * + * @category RetailCRM + * @package RetailCRM */ class Logger { diff --git a/intaro.retailcrm/classes/general/Model/BaseModel.php b/intaro.retailcrm/classes/general/Model/BaseModel.php index da0a0ce4..d027bc83 100644 --- a/intaro.retailcrm/classes/general/Model/BaseModel.php +++ b/intaro.retailcrm/classes/general/Model/BaseModel.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** + * Class BaseModel + * + * @category RetailCRM + * @package RetailCRM\Model */ abstract class BaseModel { diff --git a/intaro.retailcrm/classes/general/Model/BuyerProfile.php b/intaro.retailcrm/classes/general/Model/BuyerProfile.php index e69a8189..1d08b233 100644 --- a/intaro.retailcrm/classes/general/Model/BuyerProfile.php +++ b/intaro.retailcrm/classes/general/Model/BuyerProfile.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class BuyerProfile + * + * @category RetailCRM + * @package RetailCRM\Model */ class BuyerProfile extends BaseModel { diff --git a/intaro.retailcrm/classes/general/Model/Customer.php b/intaro.retailcrm/classes/general/Model/Customer.php index 9cfec5be..febc6cf0 100644 --- a/intaro.retailcrm/classes/general/Model/Customer.php +++ b/intaro.retailcrm/classes/general/Model/Customer.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class Customer + * + * @category RetailCRM + * @package RetailCRM\Model */ class Customer extends BaseModel { diff --git a/intaro.retailcrm/classes/general/Model/CustomerAddress.php b/intaro.retailcrm/classes/general/Model/CustomerAddress.php index 8eef20a4..edaf3613 100644 --- a/intaro.retailcrm/classes/general/Model/CustomerAddress.php +++ b/intaro.retailcrm/classes/general/Model/CustomerAddress.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class CustomerAddress + * + * @category RetailCRM + * @package RetailCRM\Model */ class CustomerAddress extends BaseModel { diff --git a/intaro.retailcrm/classes/general/Model/CustomerContragent.php b/intaro.retailcrm/classes/general/Model/CustomerContragent.php index 2fc2cc5d..86d07efc 100644 --- a/intaro.retailcrm/classes/general/Model/CustomerContragent.php +++ b/intaro.retailcrm/classes/general/Model/CustomerContragent.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class CustomerContragent + * + * @category RetailCRM + * @package RetailCRM\Model */ class CustomerContragent extends BaseModel { diff --git a/intaro.retailcrm/classes/general/RCrmActions.php b/intaro.retailcrm/classes/general/RCrmActions.php index 922da0bf..60ee360f 100644 --- a/intaro.retailcrm/classes/general/RCrmActions.php +++ b/intaro.retailcrm/classes/general/RCrmActions.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Sale\PersonType; use Intaro\RetailCrm\Component\ServiceLocator; use Bitrix\Sale\Delivery\Services\EmptyDeliveryService; @@ -19,6 +28,12 @@ IncludeModuleLangFile(__FILE__); require_once __DIR__ . '/../../lib/component/servicelocator.php'; require_once __DIR__ . '/../../lib/service/utils.php'; +/** + * class RCrmActions + * + * @category RetailCRM + * @package RetailCRM + */ class RCrmActions { public static $MODULE_ID = 'intaro.retailcrm'; diff --git a/intaro.retailcrm/classes/general/Response/ApiResponse.php b/intaro.retailcrm/classes/general/Response/ApiResponse.php index 24a262bd..425d2c6b 100644 --- a/intaro.retailcrm/classes/general/Response/ApiResponse.php +++ b/intaro.retailcrm/classes/general/Response/ApiResponse.php @@ -1,12 +1,12 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs */ namespace RetailCrm\Response; @@ -15,12 +15,10 @@ use InvalidArgumentException; use RetailCrm\Exception\InvalidJsonException; /** - * PHP version 5.3 - * - * Response from RetailCRM API + * Class ApiResponse * * @category RetailCRM - * @package RetailCRM + * @package RetailCRM\Response */ class ApiResponse implements \ArrayAccess { diff --git a/intaro.retailcrm/classes/general/RestNormalizer.php b/intaro.retailcrm/classes/general/RestNormalizer.php index 03575ce8..09b4346b 100644 --- a/intaro.retailcrm/classes/general/RestNormalizer.php +++ b/intaro.retailcrm/classes/general/RestNormalizer.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * RestNormalizer - The main class + * + * @category RetailCRM + * @package RetailCRM */ class RestNormalizer { diff --git a/intaro.retailcrm/classes/general/RetailcrmBuilderInterface.php b/intaro.retailcrm/classes/general/RetailcrmBuilderInterface.php index 9757dbb6..a790b1fd 100644 --- a/intaro.retailcrm/classes/general/RetailcrmBuilderInterface.php +++ b/intaro.retailcrm/classes/general/RetailcrmBuilderInterface.php @@ -1,7 +1,22 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + IncludeModuleLangFile(__FILE__); +/** + * Interface RetailcrmBuilderInterface + * + * @category RetailCRM + * @package RetailCRM + */ interface RetailcrmBuilderInterface { /** diff --git a/intaro.retailcrm/classes/general/RetailcrmConfigProvider.php b/intaro.retailcrm/classes/general/RetailcrmConfigProvider.php index 971ffbc3..71b7d97d 100644 --- a/intaro.retailcrm/classes/general/RetailcrmConfigProvider.php +++ b/intaro.retailcrm/classes/general/RetailcrmConfigProvider.php @@ -1,12 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** * RetailcrmConfigProvider class * * @category RetailCRM - * @package RetailCRM + * @package RetailCRM */ use Intaro\RetailCrm\Component\ConfigProvider; diff --git a/intaro.retailcrm/classes/general/RetailcrmConstants.php b/intaro.retailcrm/classes/general/RetailcrmConstants.php index 0a354c43..c5a9a009 100644 --- a/intaro.retailcrm/classes/general/RetailcrmConstants.php +++ b/intaro.retailcrm/classes/general/RetailcrmConstants.php @@ -1,12 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** * RetailcrmConstants * * @category RetailCRM - * @package RetailCRM + * @package RetailCRM */ use Intaro\RetailCrm\Component\Constants; diff --git a/intaro.retailcrm/classes/general/RetailcrmDependencyLoader.php b/intaro.retailcrm/classes/general/RetailcrmDependencyLoader.php index b184dad1..95e85254 100644 --- a/intaro.retailcrm/classes/general/RetailcrmDependencyLoader.php +++ b/intaro.retailcrm/classes/general/RetailcrmDependencyLoader.php @@ -1,12 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** * RetailcrmDependencyLoader class * * @category RetailCRM - * @package RetailCRM + * @package RetailCRM */ IncludeModuleLangFile(__FILE__); diff --git a/intaro.retailcrm/classes/general/cart/RetailCrmCart_v5.php b/intaro.retailcrm/classes/general/cart/RetailCrmCart_v5.php index 7ea141b5..cc98454f 100644 --- a/intaro.retailcrm/classes/general/cart/RetailCrmCart_v5.php +++ b/intaro.retailcrm/classes/general/cart/RetailCrmCart_v5.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Main\Context\Culture; use Bitrix\Sale\Basket; @@ -8,6 +17,9 @@ IncludeModuleLangFile(__FILE__); /** * Class RetailCrmCart + * + * @category RetailCRM + * @package RetailCRM\Cart */ class RetailCrmCart { diff --git a/intaro.retailcrm/classes/general/collector/RetailCrmCollector.php b/intaro.retailcrm/classes/general/collector/RetailCrmCollector.php index c501f675..be0a438e 100644 --- a/intaro.retailcrm/classes/general/collector/RetailCrmCollector.php +++ b/intaro.retailcrm/classes/general/collector/RetailCrmCollector.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class RetailCrmCollector + * + * @category RetailCRM + * @package RetailCRM\Collector */ class RetailCrmCollector { diff --git a/intaro.retailcrm/classes/general/consultant/RetailCrmOnlineConsultant.php b/intaro.retailcrm/classes/general/consultant/RetailCrmOnlineConsultant.php index 723c97c1..ee123abc 100644 --- a/intaro.retailcrm/classes/general/consultant/RetailCrmOnlineConsultant.php +++ b/intaro.retailcrm/classes/general/consultant/RetailCrmOnlineConsultant.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** + * Class RetailCrmOnlineConsultant + * + * @category RetailCRM + * @package RetailCRM\Consultant */ class RetailCrmOnlineConsultant { diff --git a/intaro.retailcrm/classes/general/events/RetailCrmEvent.php b/intaro.retailcrm/classes/general/events/RetailCrmEvent.php index 6ddbfd2c..7459c04a 100644 --- a/intaro.retailcrm/classes/general/events/RetailCrmEvent.php +++ b/intaro.retailcrm/classes/general/events/RetailCrmEvent.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Main\Context\Culture; use Intaro\RetailCrm\Component\Constants; use Intaro\RetailCrm\Component\ServiceLocator; @@ -17,6 +26,9 @@ use Intaro\RetailCrm\Model\Api\Response\OrdersEditResponse; /** * Class RetailCrmEvent + * + * @category RetailCRM + * @package RetailCRM\Events */ class RetailCrmEvent { diff --git a/intaro.retailcrm/classes/general/history/FastOrderHistory.php b/intaro.retailcrm/classes/general/history/FastOrderHistory.php index be2b095d..d851a271 100644 --- a/intaro.retailcrm/classes/general/history/FastOrderHistory.php +++ b/intaro.retailcrm/classes/general/history/FastOrderHistory.php @@ -1,4 +1,10 @@ RestartBuffer(); @@ -28,4 +34,4 @@ if (CModule::IncludeModule($moduleId) && $idOrderCRM && $idOrderCRM > 0) { COption::RemoveOption($moduleId, $historyTime); } -} \ No newline at end of file +} diff --git a/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php b/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php index feb7c056..e09574cb 100644 --- a/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php +++ b/intaro.retailcrm/classes/general/history/RetailCrmHistory_v5.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Main\ArgumentException; use Bitrix\Main\ArgumentNullException; use Bitrix\Main\ArgumentOutOfRangeException; @@ -25,6 +34,13 @@ use Intaro\RetailCrm\Component\Handlers\EventsHandlers; use RetailCrm\Response\ApiResponse; IncludeModuleLangFile(__FILE__); + +/** + * Class RetailCrmHistory + * + * @category RetailCRM + * @package RetailCRM\History + */ class RetailCrmHistory { public static $MODULE_ID = 'intaro.retailcrm'; diff --git a/intaro.retailcrm/classes/general/history/RetailUser.php b/intaro.retailcrm/classes/general/history/RetailUser.php index 07df4bd1..7d49e23e 100644 --- a/intaro.retailcrm/classes/general/history/RetailUser.php +++ b/intaro.retailcrm/classes/general/history/RetailUser.php @@ -1,7 +1,19 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + /** * Class RetailUser + * + * @category RetailCRM + * @package RetailCRM\History */ class RetailUser extends CUser { diff --git a/intaro.retailcrm/classes/general/inventories/RetailCrmInventories.php b/intaro.retailcrm/classes/general/inventories/RetailCrmInventories.php index b70a246a..e0ff6ba8 100644 --- a/intaro.retailcrm/classes/general/inventories/RetailCrmInventories.php +++ b/intaro.retailcrm/classes/general/inventories/RetailCrmInventories.php @@ -1,5 +1,21 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** + * Class RetailCrmInventories + * + * @category RetailCRM + * @package RetailCRM\Inventories + */ class RetailCrmInventories { public static $pageSize = 500; @@ -151,4 +167,4 @@ class RetailCrmInventories return $val; } -} \ No newline at end of file +} diff --git a/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php b/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php index 8d4f6486..25893ea0 100644 --- a/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php +++ b/intaro.retailcrm/classes/general/order/RetailCrmOrder_v5.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Main\Context; use Bitrix\Main\Context\Culture; use Bitrix\Main\UserTable; @@ -24,6 +33,9 @@ IncludeModuleLangFile(__FILE__); /** * Class RetailCrmOrder + * + * @category RetailCRM + * @package RetailCRM\Order */ class RetailCrmOrder { diff --git a/intaro.retailcrm/classes/general/prices/RetailCrmPrices.php b/intaro.retailcrm/classes/general/prices/RetailCrmPrices.php index 50a837e7..91a108dc 100644 --- a/intaro.retailcrm/classes/general/prices/RetailCrmPrices.php +++ b/intaro.retailcrm/classes/general/prices/RetailCrmPrices.php @@ -1,5 +1,22 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + IncludeModuleLangFile(__FILE__); + +/** + * Class RetailCrmPrices + * + * @category RetailCRM + * @package RetailCRM\Prices + */ class RetailCrmPrices { public static $MODULE_ID = 'intaro.retailcrm'; @@ -150,4 +167,4 @@ class RetailCrmPrices return 'RetailCrmPrices::pricesUpload();'; } -} \ No newline at end of file +} diff --git a/intaro.retailcrm/classes/general/services/BitrixOrderService.php b/intaro.retailcrm/classes/general/services/BitrixOrderService.php index f0f3c9ae..f41b1243 100644 --- a/intaro.retailcrm/classes/general/services/BitrixOrderService.php +++ b/intaro.retailcrm/classes/general/services/BitrixOrderService.php @@ -1,9 +1,24 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Sale\Order; use Bitrix\Main\Context; use Bitrix\Catalog\StoreTable; +/** + * Class BitrixOrderService + * + * @category RetailCRM + * @package RetailCRM\Service + */ class BitrixOrderService { public static function getCountryList() diff --git a/intaro.retailcrm/classes/general/services/RetailCrmService.php b/intaro.retailcrm/classes/general/services/RetailCrmService.php index e533ce44..f0b6bca2 100644 --- a/intaro.retailcrm/classes/general/services/RetailCrmService.php +++ b/intaro.retailcrm/classes/general/services/RetailCrmService.php @@ -1,9 +1,21 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Intaro\RetailCrm\Component\Constants; /** * Class RetailCrmService + * + * @category RetailCRM + * @package RetailCRM\Service */ class RetailCrmService { diff --git a/intaro.retailcrm/classes/general/ua/RetailCrmUa.php b/intaro.retailcrm/classes/general/ua/RetailCrmUa.php index 80e2954d..bf7245d2 100644 --- a/intaro.retailcrm/classes/general/ua/RetailCrmUa.php +++ b/intaro.retailcrm/classes/general/ua/RetailCrmUa.php @@ -1,4 +1,20 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + +/** + * Class RetailCrmUa + * + * @category RetailCRM + * @package RetailCRM\Ua + */ class RetailCrmUa { public static $MODULE_ID = 'intaro.retailcrm'; @@ -82,4 +98,4 @@ class RetailCrmUa $APPLICATION->AddHeadString($ua); } } -} \ No newline at end of file +} diff --git a/intaro.retailcrm/classes/general/user/RetailCrmCorporateClient.php b/intaro.retailcrm/classes/general/user/RetailCrmCorporateClient.php index 1e37b1c4..c365bccd 100644 --- a/intaro.retailcrm/classes/general/user/RetailCrmCorporateClient.php +++ b/intaro.retailcrm/classes/general/user/RetailCrmCorporateClient.php @@ -1,10 +1,26 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + use Bitrix\Main\UserTable; use RetailCrm\ApiClient; use RetailCrm\Response\ApiResponse; IncludeModuleLangFile(__FILE__); + +/** + * Class RetailCrmCorporateClient + * + * @category RetailCRM + * @package RetailCRM\User + */ class RetailCrmCorporateClient { const CORP_PREFIX = 'corp'; diff --git a/intaro.retailcrm/classes/general/user/RetailCrmUser.php b/intaro.retailcrm/classes/general/user/RetailCrmUser.php index 71496ab6..eebdf7bd 100644 --- a/intaro.retailcrm/classes/general/user/RetailCrmUser.php +++ b/intaro.retailcrm/classes/general/user/RetailCrmUser.php @@ -1,5 +1,22 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + IncludeModuleLangFile(__FILE__); + +/** + * Class RetailCrmUser + * + * @category RetailCRM + * @package RetailCRM\User + */ class RetailCrmUser { diff --git a/intaro.retailcrm/description.ru b/intaro.retailcrm/description.ru index a958b07e..60942447 100644 --- a/intaro.retailcrm/description.ru +++ b/intaro.retailcrm/description.ru @@ -1 +1 @@ -- Добавлена передача услуг через ICML каталог +- Обновлены аннотации в коде модуля diff --git a/intaro.retailcrm/install/version.php b/intaro.retailcrm/install/version.php index 8b0af8c4..54c62891 100644 --- a/intaro.retailcrm/install/version.php +++ b/intaro.retailcrm/install/version.php @@ -1,6 +1,6 @@ '6.5.15', - 'VERSION_DATE' => '2024-04-23 10:30:00' + 'VERSION' => '6.5.16', + 'VERSION_DATE' => '2024-04-27 14:00:00' ]; diff --git a/intaro.retailcrm/lib/component/apiclient/clientadapter.php b/intaro.retailcrm/lib/component/apiclient/clientadapter.php index 52fd4401..f9004d2e 100644 --- a/intaro.retailcrm/lib/component/apiclient/clientadapter.php +++ b/intaro.retailcrm/lib/component/apiclient/clientadapter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/apiclient/traits/baseclienttrait.php b/intaro.retailcrm/lib/component/apiclient/traits/baseclienttrait.php index 063ccd6c..48e5967b 100644 --- a/intaro.retailcrm/lib/component/apiclient/traits/baseclienttrait.php +++ b/intaro.retailcrm/lib/component/apiclient/traits/baseclienttrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/apiclient/traits/carttrait.php b/intaro.retailcrm/lib/component/apiclient/traits/carttrait.php index 0c5ea334..bdf03ba7 100644 --- a/intaro.retailcrm/lib/component/apiclient/traits/carttrait.php +++ b/intaro.retailcrm/lib/component/apiclient/traits/carttrait.php @@ -1,7 +1,5 @@ diff --git a/intaro.retailcrm/lib/component/apiclient/traits/customerscorporatetrait.php b/intaro.retailcrm/lib/component/apiclient/traits/customerscorporatetrait.php index 9930af8c..29da1770 100644 --- a/intaro.retailcrm/lib/component/apiclient/traits/customerscorporatetrait.php +++ b/intaro.retailcrm/lib/component/apiclient/traits/customerscorporatetrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/apiclient/traits/customerstrait.php b/intaro.retailcrm/lib/component/apiclient/traits/customerstrait.php index da3f3972..885dbd70 100644 --- a/intaro.retailcrm/lib/component/apiclient/traits/customerstrait.php +++ b/intaro.retailcrm/lib/component/apiclient/traits/customerstrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/apiclient/traits/loyaltytrait.php b/intaro.retailcrm/lib/component/apiclient/traits/loyaltytrait.php index 5f7a0ac4..e6dcf742 100644 --- a/intaro.retailcrm/lib/component/apiclient/traits/loyaltytrait.php +++ b/intaro.retailcrm/lib/component/apiclient/traits/loyaltytrait.php @@ -1,8 +1,6 @@ @@ -188,4 +186,4 @@ trait LoyaltyTrait return Deserializer::deserializeArray($response->getResponseBody(), LoyaltyLoyaltiesResponse::class); } -} \ No newline at end of file +} diff --git a/intaro.retailcrm/lib/component/apiclient/traits/ordertrait.php b/intaro.retailcrm/lib/component/apiclient/traits/ordertrait.php index b3e70063..482c1202 100644 --- a/intaro.retailcrm/lib/component/apiclient/traits/ordertrait.php +++ b/intaro.retailcrm/lib/component/apiclient/traits/ordertrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/builder/api/corporatecustomerbuilder.php b/intaro.retailcrm/lib/component/builder/api/corporatecustomerbuilder.php index d9985f8c..d84395a6 100644 --- a/intaro.retailcrm/lib/component/builder/api/corporatecustomerbuilder.php +++ b/intaro.retailcrm/lib/component/builder/api/corporatecustomerbuilder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/builder/api/customerbuilder.php b/intaro.retailcrm/lib/component/builder/api/customerbuilder.php index 2f022fb0..5d2ecfb3 100644 --- a/intaro.retailcrm/lib/component/builder/api/customerbuilder.php +++ b/intaro.retailcrm/lib/component/builder/api/customerbuilder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/builder/bitrix/customerbuilder.php b/intaro.retailcrm/lib/component/builder/bitrix/customerbuilder.php index 07c18960..643af5e5 100644 --- a/intaro.retailcrm/lib/component/builder/bitrix/customerbuilder.php +++ b/intaro.retailcrm/lib/component/builder/bitrix/customerbuilder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/builder/bitrix/loyaltydatabuilder.php b/intaro.retailcrm/lib/component/builder/bitrix/loyaltydatabuilder.php index a72c544a..1a81455f 100644 --- a/intaro.retailcrm/lib/component/builder/bitrix/loyaltydatabuilder.php +++ b/intaro.retailcrm/lib/component/builder/bitrix/loyaltydatabuilder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/builder/builderinterface.php b/intaro.retailcrm/lib/component/builder/builderinterface.php index dd760ab2..9956ce71 100644 --- a/intaro.retailcrm/lib/component/builder/builderinterface.php +++ b/intaro.retailcrm/lib/component/builder/builderinterface.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/configprovider.php b/intaro.retailcrm/lib/component/configprovider.php index 613037ca..5dd3e1fc 100644 --- a/intaro.retailcrm/lib/component/configprovider.php +++ b/intaro.retailcrm/lib/component/configprovider.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/constants.php b/intaro.retailcrm/lib/component/constants.php index 1763b715..5a704b54 100644 --- a/intaro.retailcrm/lib/component/constants.php +++ b/intaro.retailcrm/lib/component/constants.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/converter/datetimeconverter.php b/intaro.retailcrm/lib/component/converter/datetimeconverter.php index b9b86d7a..adc20a53 100644 --- a/intaro.retailcrm/lib/component/converter/datetimeconverter.php +++ b/intaro.retailcrm/lib/component/converter/datetimeconverter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/dependencyloader.php b/intaro.retailcrm/lib/component/dependencyloader.php index b243e6d3..69acd13b 100644 --- a/intaro.retailcrm/lib/component/dependencyloader.php +++ b/intaro.retailcrm/lib/component/dependencyloader.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/events.php b/intaro.retailcrm/lib/component/events.php index f4891e11..f1746490 100644 --- a/intaro.retailcrm/lib/component/events.php +++ b/intaro.retailcrm/lib/component/events.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/factory/clientfactory.php b/intaro.retailcrm/lib/component/factory/clientfactory.php index a2c28346..abf80c9c 100644 --- a/intaro.retailcrm/lib/component/factory/clientfactory.php +++ b/intaro.retailcrm/lib/component/factory/clientfactory.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/handlers/eventshandlers.php b/intaro.retailcrm/lib/component/handlers/eventshandlers.php index 053895c8..60dbb107 100644 --- a/intaro.retailcrm/lib/component/handlers/eventshandlers.php +++ b/intaro.retailcrm/lib/component/handlers/eventshandlers.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/deserializer.php b/intaro.retailcrm/lib/component/json/deserializer.php index ae45d7fb..ceb583df 100644 --- a/intaro.retailcrm/lib/component/json/deserializer.php +++ b/intaro.retailcrm/lib/component/json/deserializer.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/exception/invalidannotationexception.php b/intaro.retailcrm/lib/component/json/exception/invalidannotationexception.php index 040da97c..91a34386 100644 --- a/intaro.retailcrm/lib/component/json/exception/invalidannotationexception.php +++ b/intaro.retailcrm/lib/component/json/exception/invalidannotationexception.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/accessor.php b/intaro.retailcrm/lib/component/json/mapping/accessor.php index e66565e8..5d343da7 100644 --- a/intaro.retailcrm/lib/component/json/mapping/accessor.php +++ b/intaro.retailcrm/lib/component/json/mapping/accessor.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/bitrixboolean.php b/intaro.retailcrm/lib/component/json/mapping/bitrixboolean.php index c4b4e8c5..7a70197c 100644 --- a/intaro.retailcrm/lib/component/json/mapping/bitrixboolean.php +++ b/intaro.retailcrm/lib/component/json/mapping/bitrixboolean.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/notransform.php b/intaro.retailcrm/lib/component/json/mapping/notransform.php index 9ef25d19..a59a2632 100644 --- a/intaro.retailcrm/lib/component/json/mapping/notransform.php +++ b/intaro.retailcrm/lib/component/json/mapping/notransform.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/postdeserialize.php b/intaro.retailcrm/lib/component/json/mapping/postdeserialize.php index c7b7b189..6f1c60df 100644 --- a/intaro.retailcrm/lib/component/json/mapping/postdeserialize.php +++ b/intaro.retailcrm/lib/component/json/mapping/postdeserialize.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/postserialize.php b/intaro.retailcrm/lib/component/json/mapping/postserialize.php index 2c1ec4c3..7d05d2e0 100644 --- a/intaro.retailcrm/lib/component/json/mapping/postserialize.php +++ b/intaro.retailcrm/lib/component/json/mapping/postserialize.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/serializedname.php b/intaro.retailcrm/lib/component/json/mapping/serializedname.php index 23e5be2b..4a7695fa 100644 --- a/intaro.retailcrm/lib/component/json/mapping/serializedname.php +++ b/intaro.retailcrm/lib/component/json/mapping/serializedname.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/mapping/type.php b/intaro.retailcrm/lib/component/json/mapping/type.php index 7e901f56..9c0a4d83 100644 --- a/intaro.retailcrm/lib/component/json/mapping/type.php +++ b/intaro.retailcrm/lib/component/json/mapping/type.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/propertyannotations.php b/intaro.retailcrm/lib/component/json/propertyannotations.php index 42a81fe5..543746ee 100644 --- a/intaro.retailcrm/lib/component/json/propertyannotations.php +++ b/intaro.retailcrm/lib/component/json/propertyannotations.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/serializer.php b/intaro.retailcrm/lib/component/json/serializer.php index 76e8a7f2..fe15f9c5 100644 --- a/intaro.retailcrm/lib/component/json/serializer.php +++ b/intaro.retailcrm/lib/component/json/serializer.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/annotationreadertrait.php b/intaro.retailcrm/lib/component/json/strategy/annotationreadertrait.php index ec6b82a0..dad69246 100644 --- a/intaro.retailcrm/lib/component/json/strategy/annotationreadertrait.php +++ b/intaro.retailcrm/lib/component/json/strategy/annotationreadertrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/deserialize/datetimestrategy.php b/intaro.retailcrm/lib/component/json/strategy/deserialize/datetimestrategy.php index da7d2ddb..76387b72 100644 --- a/intaro.retailcrm/lib/component/json/strategy/deserialize/datetimestrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/deserialize/datetimestrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/deserialize/deserializestrategyinterface.php b/intaro.retailcrm/lib/component/json/strategy/deserialize/deserializestrategyinterface.php index 40b74947..c574a824 100644 --- a/intaro.retailcrm/lib/component/json/strategy/deserialize/deserializestrategyinterface.php +++ b/intaro.retailcrm/lib/component/json/strategy/deserialize/deserializestrategyinterface.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/deserialize/entitystrategy.php b/intaro.retailcrm/lib/component/json/strategy/deserialize/entitystrategy.php index 79345464..17aa58ba 100644 --- a/intaro.retailcrm/lib/component/json/strategy/deserialize/entitystrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/deserialize/entitystrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/deserialize/innertypetrait.php b/intaro.retailcrm/lib/component/json/strategy/deserialize/innertypetrait.php index 42318cde..a4818803 100644 --- a/intaro.retailcrm/lib/component/json/strategy/deserialize/innertypetrait.php +++ b/intaro.retailcrm/lib/component/json/strategy/deserialize/innertypetrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/deserialize/simpletypestrategy.php b/intaro.retailcrm/lib/component/json/strategy/deserialize/simpletypestrategy.php index d9e13bb2..7c483068 100644 --- a/intaro.retailcrm/lib/component/json/strategy/deserialize/simpletypestrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/deserialize/simpletypestrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/deserialize/typedarraystrategy.php b/intaro.retailcrm/lib/component/json/strategy/deserialize/typedarraystrategy.php index d69d3e3e..608b73e3 100644 --- a/intaro.retailcrm/lib/component/json/strategy/deserialize/typedarraystrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/deserialize/typedarraystrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/isnotransformtrait.php b/intaro.retailcrm/lib/component/json/strategy/isnotransformtrait.php index 2b445b0d..5bed6942 100644 --- a/intaro.retailcrm/lib/component/json/strategy/isnotransformtrait.php +++ b/intaro.retailcrm/lib/component/json/strategy/isnotransformtrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/serialize/datetimestrategy.php b/intaro.retailcrm/lib/component/json/strategy/serialize/datetimestrategy.php index bc29c5cb..1d145741 100644 --- a/intaro.retailcrm/lib/component/json/strategy/serialize/datetimestrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/serialize/datetimestrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/serialize/entitystrategy.php b/intaro.retailcrm/lib/component/json/strategy/serialize/entitystrategy.php index 9593eab9..7b40bbaf 100644 --- a/intaro.retailcrm/lib/component/json/strategy/serialize/entitystrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/serialize/entitystrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/serialize/innertypetrait.php b/intaro.retailcrm/lib/component/json/strategy/serialize/innertypetrait.php index 83e792e9..6afd1b3c 100644 --- a/intaro.retailcrm/lib/component/json/strategy/serialize/innertypetrait.php +++ b/intaro.retailcrm/lib/component/json/strategy/serialize/innertypetrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/serialize/serializestrategyinterface.php b/intaro.retailcrm/lib/component/json/strategy/serialize/serializestrategyinterface.php index d93af821..4a50be6d 100644 --- a/intaro.retailcrm/lib/component/json/strategy/serialize/serializestrategyinterface.php +++ b/intaro.retailcrm/lib/component/json/strategy/serialize/serializestrategyinterface.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/serialize/simpletypestrategy.php b/intaro.retailcrm/lib/component/json/strategy/serialize/simpletypestrategy.php index 8806f9f1..7a28fecf 100644 --- a/intaro.retailcrm/lib/component/json/strategy/serialize/simpletypestrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/serialize/simpletypestrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/serialize/typedarraystrategy.php b/intaro.retailcrm/lib/component/json/strategy/serialize/typedarraystrategy.php index 0b2507f5..6066bb65 100644 --- a/intaro.retailcrm/lib/component/json/strategy/serialize/typedarraystrategy.php +++ b/intaro.retailcrm/lib/component/json/strategy/serialize/typedarraystrategy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/strategyfactory.php b/intaro.retailcrm/lib/component/json/strategy/strategyfactory.php index 471eb497..0e45697d 100644 --- a/intaro.retailcrm/lib/component/json/strategy/strategyfactory.php +++ b/intaro.retailcrm/lib/component/json/strategy/strategyfactory.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/json/strategy/typedarraytrait.php b/intaro.retailcrm/lib/component/json/strategy/typedarraytrait.php index da66f712..c4962e16 100644 --- a/intaro.retailcrm/lib/component/json/strategy/typedarraytrait.php +++ b/intaro.retailcrm/lib/component/json/strategy/typedarraytrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/component/servicelocator.php b/intaro.retailcrm/lib/component/servicelocator.php index ace07bcb..ca483a2e 100644 --- a/intaro.retailcrm/lib/component/servicelocator.php +++ b/intaro.retailcrm/lib/component/servicelocator.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/controller/adminpanel.php b/intaro.retailcrm/lib/controller/adminpanel.php index 2bb19437..49f02c9c 100644 --- a/intaro.retailcrm/lib/controller/adminpanel.php +++ b/intaro.retailcrm/lib/controller/adminpanel.php @@ -7,6 +7,14 @@ use Bitrix\Main\Engine\Controller; use Intaro\RetailCrm\Component\ConfigProvider; use Intaro\RetailCrm\Component\Constants; +/** + * @category Integration + * @package Intaro\RetailCrm\Controller + * @author RetailCRM + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ class AdminPanel extends Controller { public function configureActions(): array diff --git a/intaro.retailcrm/lib/controller/icml.php b/intaro.retailcrm/lib/controller/icml.php index 183d2c44..37001dd3 100644 --- a/intaro.retailcrm/lib/controller/icml.php +++ b/intaro.retailcrm/lib/controller/icml.php @@ -18,9 +18,12 @@ use CModule; use Intaro\RetailCrm\Service\Hl; /** - * Class Order - * - * @package Intaro\RetailCrm\Controller\Loyalty + * @category Integration + * @package Intaro\RetailCrm\Controller + * @author RetailCRM + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs */ class Icml extends Controller { diff --git a/intaro.retailcrm/lib/controller/loyalty/basket.php b/intaro.retailcrm/lib/controller/loyalty/basket.php index b231b0d3..8784954b 100644 --- a/intaro.retailcrm/lib/controller/loyalty/basket.php +++ b/intaro.retailcrm/lib/controller/loyalty/basket.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/controller/loyalty/order.php b/intaro.retailcrm/lib/controller/loyalty/order.php index 48832b00..1d4fc27b 100644 --- a/intaro.retailcrm/lib/controller/loyalty/order.php +++ b/intaro.retailcrm/lib/controller/loyalty/order.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/controller/loyalty/register.php b/intaro.retailcrm/lib/controller/loyalty/register.php index 4ff24ea5..00d5ccf2 100644 --- a/intaro.retailcrm/lib/controller/loyalty/register.php +++ b/intaro.retailcrm/lib/controller/loyalty/register.php @@ -23,6 +23,14 @@ use Intaro\RetailCrm\Service\LoyaltyService; use Intaro\RetailCrm\Service\LoyaltyAccountService; use Intaro\RetailCrm\Service\Utils; +/** + * @category Integration + * @package Intaro\RetailCrm\Controller\Loyalty + * @author RetailCRM + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ class Register extends Controller { public const MIN_CODE_LENGTH = 3; diff --git a/intaro.retailcrm/lib/dataprovider/currentuserprovider.php b/intaro.retailcrm/lib/dataprovider/currentuserprovider.php index c595ccf3..626e0a76 100644 --- a/intaro.retailcrm/lib/dataprovider/currentuserprovider.php +++ b/intaro.retailcrm/lib/dataprovider/currentuserprovider.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/abstractapimodel.php b/intaro.retailcrm/lib/model/api/abstractapimodel.php index cff66556..ab1c3c74 100644 --- a/intaro.retailcrm/lib/model/api/abstractapimodel.php +++ b/intaro.retailcrm/lib/model/api/abstractapimodel.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/abstractloyaltyevent.php b/intaro.retailcrm/lib/model/api/abstractloyaltyevent.php index 94bb2235..7dcbc1d8 100644 --- a/intaro.retailcrm/lib/model/api/abstractloyaltyevent.php +++ b/intaro.retailcrm/lib/model/api/abstractloyaltyevent.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/address.php b/intaro.retailcrm/lib/model/api/address.php index c3b43897..288a72b6 100644 --- a/intaro.retailcrm/lib/model/api/address.php +++ b/intaro.retailcrm/lib/model/api/address.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/apimodelinterface.php b/intaro.retailcrm/lib/model/api/apimodelinterface.php index 92ae8f8a..9546a3bf 100644 --- a/intaro.retailcrm/lib/model/api/apimodelinterface.php +++ b/intaro.retailcrm/lib/model/api/apimodelinterface.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/cart/cart.php b/intaro.retailcrm/lib/model/api/cart/cart.php index e99bb5a1..ae848dd8 100644 --- a/intaro.retailcrm/lib/model/api/cart/cart.php +++ b/intaro.retailcrm/lib/model/api/cart/cart.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/cart/cartitem.php b/intaro.retailcrm/lib/model/api/cart/cartitem.php index 1a12b35c..ade6284b 100644 --- a/intaro.retailcrm/lib/model/api/cart/cartitem.php +++ b/intaro.retailcrm/lib/model/api/cart/cartitem.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/codevaluemodel.php b/intaro.retailcrm/lib/model/api/codevaluemodel.php index d5d0071f..e255996d 100644 --- a/intaro.retailcrm/lib/model/api/codevaluemodel.php +++ b/intaro.retailcrm/lib/model/api/codevaluemodel.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/company.php b/intaro.retailcrm/lib/model/api/company.php index 5c321e97..aa2e798b 100644 --- a/intaro.retailcrm/lib/model/api/company.php +++ b/intaro.retailcrm/lib/model/api/company.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/contragent.php b/intaro.retailcrm/lib/model/api/contragent.php index 425f65a7..9ab2d5ca 100644 --- a/intaro.retailcrm/lib/model/api/contragent.php +++ b/intaro.retailcrm/lib/model/api/contragent.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/customer.php b/intaro.retailcrm/lib/model/api/customer.php index e714e96e..05f09057 100644 --- a/intaro.retailcrm/lib/model/api/customer.php +++ b/intaro.retailcrm/lib/model/api/customer.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/customercontact.php b/intaro.retailcrm/lib/model/api/customercontact.php index 9e7be752..18fa8667 100644 --- a/intaro.retailcrm/lib/model/api/customercontact.php +++ b/intaro.retailcrm/lib/model/api/customercontact.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/customernote.php b/intaro.retailcrm/lib/model/api/customernote.php index 7b539162..2d3fbe3f 100644 --- a/intaro.retailcrm/lib/model/api/customernote.php +++ b/intaro.retailcrm/lib/model/api/customernote.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/dictionaryelements.php b/intaro.retailcrm/lib/model/api/dictionaryelements.php index 573b1556..faa4eba8 100644 --- a/intaro.retailcrm/lib/model/api/dictionaryelements.php +++ b/intaro.retailcrm/lib/model/api/dictionaryelements.php @@ -1,9 +1,23 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Model\Api; use Intaro\RetailCrm\Component\Json\Mapping; +/** + * Class DictionaryElements + * + * @package Intaro\RetailCrm\Model\Api + */ class DictionaryElements { /** @@ -35,4 +49,4 @@ class DictionaryElements * @Mapping\SerializedName("ordering") */ public $ordering; -} \ No newline at end of file +} diff --git a/intaro.retailcrm/lib/model/api/history.php b/intaro.retailcrm/lib/model/api/history.php index 5ec8cd83..d53b5341 100644 --- a/intaro.retailcrm/lib/model/api/history.php +++ b/intaro.retailcrm/lib/model/api/history.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/identifierspair.php b/intaro.retailcrm/lib/model/api/identifierspair.php index 53cb8691..c377bf07 100644 --- a/intaro.retailcrm/lib/model/api/identifierspair.php +++ b/intaro.retailcrm/lib/model/api/identifierspair.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/item.php b/intaro.retailcrm/lib/model/api/item.php index eae0fde3..66090416 100644 --- a/intaro.retailcrm/lib/model/api/item.php +++ b/intaro.retailcrm/lib/model/api/item.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/loyalty.php b/intaro.retailcrm/lib/model/api/loyalty.php index fbdee072..6c698d87 100644 --- a/intaro.retailcrm/lib/model/api/loyalty.php +++ b/intaro.retailcrm/lib/model/api/loyalty.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Model\Api; use Intaro\RetailCrm\Component\Json\Mapping; @@ -121,4 +130,3 @@ class Loyalty */ public $blockedAt; } - diff --git a/intaro.retailcrm/lib/model/api/loyaltyaccount.php b/intaro.retailcrm/lib/model/api/loyaltyaccount.php index 289ea650..7604fae1 100644 --- a/intaro.retailcrm/lib/model/api/loyaltyaccount.php +++ b/intaro.retailcrm/lib/model/api/loyaltyaccount.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/loyaltyaccountapifiltertype.php b/intaro.retailcrm/lib/model/api/loyaltyaccountapifiltertype.php index 4194fd4a..f0b53e40 100644 --- a/intaro.retailcrm/lib/model/api/loyaltyaccountapifiltertype.php +++ b/intaro.retailcrm/lib/model/api/loyaltyaccountapifiltertype.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/loyaltycalculation.php b/intaro.retailcrm/lib/model/api/loyaltycalculation.php index ab6d882b..75e00b41 100644 --- a/intaro.retailcrm/lib/model/api/loyaltycalculation.php +++ b/intaro.retailcrm/lib/model/api/loyaltycalculation.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/loyaltylevel.php b/intaro.retailcrm/lib/model/api/loyaltylevel.php index 4de8f8c7..4ed7e357 100644 --- a/intaro.retailcrm/lib/model/api/loyaltylevel.php +++ b/intaro.retailcrm/lib/model/api/loyaltylevel.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/createorder.php b/intaro.retailcrm/lib/model/api/order/createorder.php index bdb50b5d..3a0a2c3d 100644 --- a/intaro.retailcrm/lib/model/api/order/createorder.php +++ b/intaro.retailcrm/lib/model/api/order/createorder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/order.php b/intaro.retailcrm/lib/model/api/order/order.php index 0110a03e..e28e1ac2 100644 --- a/intaro.retailcrm/lib/model/api/order/order.php +++ b/intaro.retailcrm/lib/model/api/order/order.php @@ -5,6 +5,16 @@ namespace Intaro\RetailCrm\Model\Api\Order; use Intaro\RetailCrm\Model\Api\AbstractApiModel; use Intaro\RetailCrm\Component\Json\Mapping; +/** + * Class OrderDeliveryData + * + * @category Integration + * @package Intaro\RetailCrm\Model\Api\Order + * @author RetailCRM + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ class Order extends AbstractApiModel { /** diff --git a/intaro.retailcrm/lib/model/api/order/orderdeliverydata.php b/intaro.retailcrm/lib/model/api/order/orderdeliverydata.php index a49d9cf5..4a098500 100644 --- a/intaro.retailcrm/lib/model/api/order/orderdeliverydata.php +++ b/intaro.retailcrm/lib/model/api/order/orderdeliverydata.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/orderproduct.php b/intaro.retailcrm/lib/model/api/order/orderproduct.php index a1b3c8f0..a100b537 100644 --- a/intaro.retailcrm/lib/model/api/order/orderproduct.php +++ b/intaro.retailcrm/lib/model/api/order/orderproduct.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/orderproductdiscountitem.php b/intaro.retailcrm/lib/model/api/order/orderproductdiscountitem.php index 48ba1f51..a4e6a13c 100644 --- a/intaro.retailcrm/lib/model/api/order/orderproductdiscountitem.php +++ b/intaro.retailcrm/lib/model/api/order/orderproductdiscountitem.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/orderproductpriceitem.php b/intaro.retailcrm/lib/model/api/order/orderproductpriceitem.php index 2fef9056..901b64fb 100644 --- a/intaro.retailcrm/lib/model/api/order/orderproductpriceitem.php +++ b/intaro.retailcrm/lib/model/api/order/orderproductpriceitem.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/package.php b/intaro.retailcrm/lib/model/api/order/package.php index 46cae4c1..6946f070 100644 --- a/intaro.retailcrm/lib/model/api/order/package.php +++ b/intaro.retailcrm/lib/model/api/order/package.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/packageitem.php b/intaro.retailcrm/lib/model/api/order/packageitem.php index 6207e4d0..17d6e7ac 100644 --- a/intaro.retailcrm/lib/model/api/order/packageitem.php +++ b/intaro.retailcrm/lib/model/api/order/packageitem.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/packageitemorderproduct.php b/intaro.retailcrm/lib/model/api/order/packageitemorderproduct.php index 40258179..b8771068 100644 --- a/intaro.retailcrm/lib/model/api/order/packageitemorderproduct.php +++ b/intaro.retailcrm/lib/model/api/order/packageitemorderproduct.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/serializeddeliveryservice.php b/intaro.retailcrm/lib/model/api/order/serializeddeliveryservice.php index 23003064..73899029 100644 --- a/intaro.retailcrm/lib/model/api/order/serializeddeliveryservice.php +++ b/intaro.retailcrm/lib/model/api/order/serializeddeliveryservice.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/order/serializedorderdelivery.php b/intaro.retailcrm/lib/model/api/order/serializedorderdelivery.php index e4fe3615..5f43a3ff 100644 --- a/intaro.retailcrm/lib/model/api/order/serializedorderdelivery.php +++ b/intaro.retailcrm/lib/model/api/order/serializedorderdelivery.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/orderproduct.php b/intaro.retailcrm/lib/model/api/orderproduct.php index 26807085..dd5223f6 100644 --- a/intaro.retailcrm/lib/model/api/orderproduct.php +++ b/intaro.retailcrm/lib/model/api/orderproduct.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/paginationresponse.php b/intaro.retailcrm/lib/model/api/paginationresponse.php index feb5b07b..bab892e2 100644 --- a/intaro.retailcrm/lib/model/api/paginationresponse.php +++ b/intaro.retailcrm/lib/model/api/paginationresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/payment.php b/intaro.retailcrm/lib/model/api/payment.php index 72ebc587..e332a73e 100644 --- a/intaro.retailcrm/lib/model/api/payment.php +++ b/intaro.retailcrm/lib/model/api/payment.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/phone.php b/intaro.retailcrm/lib/model/api/phone.php index 2b0aa4f7..f3288d26 100644 --- a/intaro.retailcrm/lib/model/api/phone.php +++ b/intaro.retailcrm/lib/model/api/phone.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/pricetype.php b/intaro.retailcrm/lib/model/api/pricetype.php index 0250446c..b33db4d3 100644 --- a/intaro.retailcrm/lib/model/api/pricetype.php +++ b/intaro.retailcrm/lib/model/api/pricetype.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/bytrait.php b/intaro.retailcrm/lib/model/api/request/bytrait.php index 66d36361..e35f2412 100644 --- a/intaro.retailcrm/lib/model/api/request/bytrait.php +++ b/intaro.retailcrm/lib/model/api/request/bytrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressescreaterequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressescreaterequest.php index 289bc8eb..a0919ad4 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressescreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressescreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddresseseditrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddresseseditrequest.php index 1bc6e886..04b6bc37 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddresseseditrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddresseseditrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressesrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressesrequest.php index 2512d66a..8b496b49 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressesrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateaddressesrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniescreaterequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniescreaterequest.php index 851a2f85..3a2d379a 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniescreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniescreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompanieseditrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompanieseditrequest.php index 3d9275b1..c3356506 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompanieseditrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompanieseditrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniesrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniesrequest.php index 86c69746..3d7ca081 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniesrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecompaniesrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactscreaterequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactscreaterequest.php index af572192..947d4190 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactscreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactscreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactseditrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactseditrequest.php index a0af1887..55295a7f 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactseditrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactseditrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactsrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactsrequest.php index b6951ea8..0695e4d1 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactsrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecontactsrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecreaterequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecreaterequest.php index aa1e6d2d..f1cbed03 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatecreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatefixexternalidsrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatefixexternalidsrequest.php index 0b46ad57..0da2b89a 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatefixexternalidsrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatefixexternalidsrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatelistrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatelistrequest.php index 63cb9b38..2e42408c 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporatelistrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporatelistrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateuploadrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateuploadrequest.php index ed607465..13a0f8ce 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscorporateuploadrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscorporateuploadrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerscreaterequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerscreaterequest.php index e0bde339..40f6c4e9 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerscreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerscreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerseditrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerseditrequest.php index 33461ff0..5c12df06 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerseditrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerseditrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customersfixexternalidsrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customersfixexternalidsrequest.php index e7c722cf..381169ed 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customersfixexternalidsrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customersfixexternalidsrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customersgetrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customersgetrequest.php index da06a064..2c4d0c6c 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customersgetrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customersgetrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customershistoryrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customershistoryrequest.php index 84f96316..8a219460 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customershistoryrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customershistoryrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customerslistrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customerslistrequest.php index f52c1230..4e62d73d 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customerslistrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customerslistrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customersnotescreaterequest.php b/intaro.retailcrm/lib/model/api/request/customers/customersnotescreaterequest.php index 85fbc8c6..487455c3 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customersnotescreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customersnotescreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customersnotesrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customersnotesrequest.php index 1518b16f..80e849af 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customersnotesrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customersnotesrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/customers/customersuploadrequest.php b/intaro.retailcrm/lib/model/api/request/customers/customersuploadrequest.php index 989cb11c..a8b190da 100644 --- a/intaro.retailcrm/lib/model/api/request/customers/customersuploadrequest.php +++ b/intaro.retailcrm/lib/model/api/request/customers/customersuploadrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/entitybytrait.php b/intaro.retailcrm/lib/model/api/request/entitybytrait.php index 66dde0e5..c53fefe6 100644 --- a/intaro.retailcrm/lib/model/api/request/entitybytrait.php +++ b/intaro.retailcrm/lib/model/api/request/entitybytrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/companyfilter.php b/intaro.retailcrm/lib/model/api/request/filter/companyfilter.php index 2137692c..d485ac5b 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/companyfilter.php +++ b/intaro.retailcrm/lib/model/api/request/filter/companyfilter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/customercontactfilter.php b/intaro.retailcrm/lib/model/api/request/filter/customercontactfilter.php index 8a332133..d6b50123 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/customercontactfilter.php +++ b/intaro.retailcrm/lib/model/api/request/filter/customercontactfilter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/customerfilter.php b/intaro.retailcrm/lib/model/api/request/filter/customerfilter.php index 26ee287f..310bf5e6 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/customerfilter.php +++ b/intaro.retailcrm/lib/model/api/request/filter/customerfilter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/customerhistoryfilterv4type.php b/intaro.retailcrm/lib/model/api/request/filter/customerhistoryfilterv4type.php index 05ec5bc7..dd29e354 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/customerhistoryfilterv4type.php +++ b/intaro.retailcrm/lib/model/api/request/filter/customerhistoryfilterv4type.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/customerscorporateaddressesfilter.php b/intaro.retailcrm/lib/model/api/request/filter/customerscorporateaddressesfilter.php index 0b0a92ca..f56e397a 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/customerscorporateaddressesfilter.php +++ b/intaro.retailcrm/lib/model/api/request/filter/customerscorporateaddressesfilter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/customerscorporatefilter.php b/intaro.retailcrm/lib/model/api/request/filter/customerscorporatefilter.php index 4d6c363b..8f396b04 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/customerscorporatefilter.php +++ b/intaro.retailcrm/lib/model/api/request/filter/customerscorporatefilter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/filter/customersnotesfilter.php b/intaro.retailcrm/lib/model/api/request/filter/customersnotesfilter.php index eeffaeee..9ea4adc5 100644 --- a/intaro.retailcrm/lib/model/api/request/filter/customersnotesfilter.php +++ b/intaro.retailcrm/lib/model/api/request/filter/customersnotesfilter.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountactivaterequest.php b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountactivaterequest.php index f2f4c32c..4ff4163b 100644 --- a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountactivaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountactivaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountcreaterequest.php b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountcreaterequest.php index 379b4deb..6505dadc 100644 --- a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountcreaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountcreaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccounteditrequest.php b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccounteditrequest.php index 3d103556..9fb6ff07 100644 --- a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccounteditrequest.php +++ b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccounteditrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountrequest.php b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountrequest.php index 2b8afdfb..4b14177e 100644 --- a/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountrequest.php +++ b/intaro.retailcrm/lib/model/api/request/loyalty/account/loyaltyaccountrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/loyalty/loyaltycalculaterequest.php b/intaro.retailcrm/lib/model/api/request/loyalty/loyaltycalculaterequest.php index 108821bb..7fbd8bd4 100644 --- a/intaro.retailcrm/lib/model/api/request/loyalty/loyaltycalculaterequest.php +++ b/intaro.retailcrm/lib/model/api/request/loyalty/loyaltycalculaterequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/order/loyalty/orderloyaltyapplyrequest.php b/intaro.retailcrm/lib/model/api/request/order/loyalty/orderloyaltyapplyrequest.php index 520b5b0c..007ec970 100644 --- a/intaro.retailcrm/lib/model/api/request/order/loyalty/orderloyaltyapplyrequest.php +++ b/intaro.retailcrm/lib/model/api/request/order/loyalty/orderloyaltyapplyrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/paginatedtrait.php b/intaro.retailcrm/lib/model/api/request/paginatedtrait.php index 8f1875df..630ab0dd 100644 --- a/intaro.retailcrm/lib/model/api/request/paginatedtrait.php +++ b/intaro.retailcrm/lib/model/api/request/paginatedtrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/sitescopedtrait.php b/intaro.retailcrm/lib/model/api/request/sitescopedtrait.php index 409a2fed..cbec5838 100644 --- a/intaro.retailcrm/lib/model/api/request/sitescopedtrait.php +++ b/intaro.retailcrm/lib/model/api/request/sitescopedtrait.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationconfirmrequest.php b/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationconfirmrequest.php index e1e8a309..a237d433 100644 --- a/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationconfirmrequest.php +++ b/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationconfirmrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationstatusrequest.php b/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationstatusrequest.php index aee4af8f..f8951ebf 100644 --- a/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationstatusrequest.php +++ b/intaro.retailcrm/lib/model/api/request/smsverification/smsverificationstatusrequest.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/requiredfields.php b/intaro.retailcrm/lib/model/api/requiredfields.php index fa5baae5..1fb31e8d 100644 --- a/intaro.retailcrm/lib/model/api/requiredfields.php +++ b/intaro.retailcrm/lib/model/api/requiredfields.php @@ -1,8 +1,6 @@ @@ -15,6 +13,11 @@ namespace Intaro\RetailCrm\Model\Api; use Intaro\RetailCrm\Component\Json\Mapping; +/** + * Class RequiredFields + * + * @package Intaro\RetailCrm\Model\Api + */ class RequiredFields { /** @@ -76,4 +79,4 @@ class RequiredFields * @Mapping\SerializedName("dictionaryElements") */ public $dictionaryElements; -} \ No newline at end of file +} diff --git a/intaro.retailcrm/lib/model/api/response/abstractapiresponsemodel.php b/intaro.retailcrm/lib/model/api/response/abstractapiresponsemodel.php index 48eba953..794d36c3 100644 --- a/intaro.retailcrm/lib/model/api/response/abstractapiresponsemodel.php +++ b/intaro.retailcrm/lib/model/api/response/abstractapiresponsemodel.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/cart/cartgetresponse.php b/intaro.retailcrm/lib/model/api/response/cart/cartgetresponse.php index 3b264363..f71072b3 100644 --- a/intaro.retailcrm/lib/model/api/response/cart/cartgetresponse.php +++ b/intaro.retailcrm/lib/model/api/response/cart/cartgetresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/cart/cartresponse.php b/intaro.retailcrm/lib/model/api/response/cart/cartresponse.php index 3ecf4725..d4886b52 100644 --- a/intaro.retailcrm/lib/model/api/response/cart/cartresponse.php +++ b/intaro.retailcrm/lib/model/api/response/cart/cartresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/companiesresponse.php b/intaro.retailcrm/lib/model/api/response/companiesresponse.php index 16cafdb5..5085e61a 100644 --- a/intaro.retailcrm/lib/model/api/response/companiesresponse.php +++ b/intaro.retailcrm/lib/model/api/response/companiesresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/createresponse.php b/intaro.retailcrm/lib/model/api/response/createresponse.php index c804b5ea..da3f232f 100644 --- a/intaro.retailcrm/lib/model/api/response/createresponse.php +++ b/intaro.retailcrm/lib/model/api/response/createresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customerchangeresponse.php b/intaro.retailcrm/lib/model/api/response/customerchangeresponse.php index 0910b074..12015271 100644 --- a/intaro.retailcrm/lib/model/api/response/customerchangeresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customerchangeresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customercorporateresponse.php b/intaro.retailcrm/lib/model/api/response/customercorporateresponse.php index 8f3346d2..ba6d3a14 100644 --- a/intaro.retailcrm/lib/model/api/response/customercorporateresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customercorporateresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customerresponse.php b/intaro.retailcrm/lib/model/api/response/customerresponse.php index a397fcde..d3d06329 100644 --- a/intaro.retailcrm/lib/model/api/response/customerresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customerresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customerscorporateaddressesresponse.php b/intaro.retailcrm/lib/model/api/response/customerscorporateaddressesresponse.php index cc31de34..029ec73c 100644 --- a/intaro.retailcrm/lib/model/api/response/customerscorporateaddressesresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customerscorporateaddressesresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customerscorporatecontactsresponse.php b/intaro.retailcrm/lib/model/api/response/customerscorporatecontactsresponse.php index 49553129..ca6a47ac 100644 --- a/intaro.retailcrm/lib/model/api/response/customerscorporatecontactsresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customerscorporatecontactsresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customerscorporateresponse.php b/intaro.retailcrm/lib/model/api/response/customerscorporateresponse.php index efb8e3b3..e074598b 100644 --- a/intaro.retailcrm/lib/model/api/response/customerscorporateresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customerscorporateresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customersnotesresponse.php b/intaro.retailcrm/lib/model/api/response/customersnotesresponse.php index ea07afc2..5f47caa4 100644 --- a/intaro.retailcrm/lib/model/api/response/customersnotesresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customersnotesresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customersresponse.php b/intaro.retailcrm/lib/model/api/response/customersresponse.php index 011e8d1a..ded00676 100644 --- a/intaro.retailcrm/lib/model/api/response/customersresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customersresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/customersuploadresponse.php b/intaro.retailcrm/lib/model/api/response/customersuploadresponse.php index 6357fcc3..5eea8b5f 100644 --- a/intaro.retailcrm/lib/model/api/response/customersuploadresponse.php +++ b/intaro.retailcrm/lib/model/api/response/customersuploadresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/historyresponse.php b/intaro.retailcrm/lib/model/api/response/historyresponse.php index a49f4d71..6a1263f8 100644 --- a/intaro.retailcrm/lib/model/api/response/historyresponse.php +++ b/intaro.retailcrm/lib/model/api/response/historyresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountactivateresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountactivateresponse.php index 053fcee7..3eb70993 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountactivateresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountactivateresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountcreateresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountcreateresponse.php index b0488a6f..2abf9430 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountcreateresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountcreateresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccounteditresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccounteditresponse.php index c6bf71b2..bf038ace 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccounteditresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccounteditresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountgetresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountgetresponse.php index 69d146f6..1ba5f471 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountgetresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountgetresponse.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Model\Api\Response\Loyalty\Account; use Intaro\RetailCrm\Component\Json\Mapping; diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountsresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountsresponse.php index 5e91d372..62b9596d 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountsresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/account/loyaltyaccountsresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/loyaltycalculateresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/loyaltycalculateresponse.php index cb4ce63e..218ef705 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/loyaltycalculateresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/loyaltycalculateresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltiesresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltiesresponse.php index 6595a3ed..9e11e661 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltiesresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltiesresponse.php @@ -1,10 +1,24 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Model\Api\Response\Loyalty; use Intaro\RetailCrm\Model\Api\Response\AbstractApiResponseModel; use Intaro\RetailCrm\Component\Json\Mapping; +/** + * Class LoyaltyLoyaltiesResponse + * + * @package Intaro\RetailCrm\Model\Api\Response\Loyalty + */ class LoyaltyLoyaltiesResponse extends AbstractApiResponseModel { /** @@ -36,4 +50,4 @@ class LoyaltyLoyaltiesResponse extends AbstractApiResponseModel * @Mapping\SerializedName("loyalties") */ public $loyalties; -} \ No newline at end of file +} diff --git a/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltyresponse.php b/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltyresponse.php index 16f992aa..a400f24b 100644 --- a/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltyresponse.php +++ b/intaro.retailcrm/lib/model/api/response/loyalty/loyaltyloyaltyresponse.php @@ -1,10 +1,24 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Model\Api\Response\Loyalty; use Intaro\RetailCrm\Model\Api\Response\AbstractApiResponseModel; use Intaro\RetailCrm\Component\Json\Mapping; +/** + * Class LoyaltyLoyaltyResponse + * + * @package Intaro\RetailCrm\Model\Api\Response\Loyalty + */ class LoyaltyLoyaltyResponse extends AbstractApiResponseModel { /** diff --git a/intaro.retailcrm/lib/model/api/response/operationresponse.php b/intaro.retailcrm/lib/model/api/response/operationresponse.php index b2d7845a..ba73a1b9 100644 --- a/intaro.retailcrm/lib/model/api/response/operationresponse.php +++ b/intaro.retailcrm/lib/model/api/response/operationresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/order/loyalty/orderloyaltyapplyresponse.php b/intaro.retailcrm/lib/model/api/response/order/loyalty/orderloyaltyapplyresponse.php index 3bc3858a..322c75fb 100644 --- a/intaro.retailcrm/lib/model/api/response/order/loyalty/orderloyaltyapplyresponse.php +++ b/intaro.retailcrm/lib/model/api/response/order/loyalty/orderloyaltyapplyresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/orderscreateresponse.php b/intaro.retailcrm/lib/model/api/response/orderscreateresponse.php index 934f655a..939a57c8 100644 --- a/intaro.retailcrm/lib/model/api/response/orderscreateresponse.php +++ b/intaro.retailcrm/lib/model/api/response/orderscreateresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/orderseditresponse.php b/intaro.retailcrm/lib/model/api/response/orderseditresponse.php index 39119aec..f9b5a27e 100644 --- a/intaro.retailcrm/lib/model/api/response/orderseditresponse.php +++ b/intaro.retailcrm/lib/model/api/response/orderseditresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/ordersgetresponse.php b/intaro.retailcrm/lib/model/api/response/ordersgetresponse.php index 5b6b8427..c295635b 100644 --- a/intaro.retailcrm/lib/model/api/response/ordersgetresponse.php +++ b/intaro.retailcrm/lib/model/api/response/ordersgetresponse.php @@ -1,8 +1,6 @@ @@ -36,4 +34,4 @@ class OrdersGetResponse extends AbstractApiResponseModel * @Mapping\SerializedName("order") */ public $order; -} \ No newline at end of file +} diff --git a/intaro.retailcrm/lib/model/api/response/paginationresponse.php b/intaro.retailcrm/lib/model/api/response/paginationresponse.php index ed5dd996..9771d414 100644 --- a/intaro.retailcrm/lib/model/api/response/paginationresponse.php +++ b/intaro.retailcrm/lib/model/api/response/paginationresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/settings/credentialsresponse.php b/intaro.retailcrm/lib/model/api/response/settings/credentialsresponse.php index 78a4daf2..ecb06324 100644 --- a/intaro.retailcrm/lib/model/api/response/settings/credentialsresponse.php +++ b/intaro.retailcrm/lib/model/api/response/settings/credentialsresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationconfirmresponse.php b/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationconfirmresponse.php index 544bf6c4..9bf8e2cc 100644 --- a/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationconfirmresponse.php +++ b/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationconfirmresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationstatusresponse.php b/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationstatusresponse.php index 24239766..1f62d7ed 100644 --- a/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationstatusresponse.php +++ b/intaro.retailcrm/lib/model/api/response/smsverification/smsverificationstatusresponse.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedcreateloyaltyaccount.php b/intaro.retailcrm/lib/model/api/serializedcreateloyaltyaccount.php index 7e17fc0f..b58a8934 100644 --- a/intaro.retailcrm/lib/model/api/serializedcreateloyaltyaccount.php +++ b/intaro.retailcrm/lib/model/api/serializedcreateloyaltyaccount.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedloyalty.php b/intaro.retailcrm/lib/model/api/serializedloyalty.php index 8efb80e1..02ce6515 100644 --- a/intaro.retailcrm/lib/model/api/serializedloyalty.php +++ b/intaro.retailcrm/lib/model/api/serializedloyalty.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedloyaltyorder.php b/intaro.retailcrm/lib/model/api/serializedloyaltyorder.php index 6834cf5e..b6ea31b7 100644 --- a/intaro.retailcrm/lib/model/api/serializedloyaltyorder.php +++ b/intaro.retailcrm/lib/model/api/serializedloyaltyorder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedorder.php b/intaro.retailcrm/lib/model/api/serializedorder.php index b5c3b801..cf39a732 100644 --- a/intaro.retailcrm/lib/model/api/serializedorder.php +++ b/intaro.retailcrm/lib/model/api/serializedorder.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedorderdelivery.php b/intaro.retailcrm/lib/model/api/serializedorderdelivery.php index 2ebc6180..27e6b0ce 100644 --- a/intaro.retailcrm/lib/model/api/serializedorderdelivery.php +++ b/intaro.retailcrm/lib/model/api/serializedorderdelivery.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedorderproduct.php b/intaro.retailcrm/lib/model/api/serializedorderproduct.php index f3917160..9dd57123 100644 --- a/intaro.retailcrm/lib/model/api/serializedorderproduct.php +++ b/intaro.retailcrm/lib/model/api/serializedorderproduct.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedorderproductoffer.php b/intaro.retailcrm/lib/model/api/serializedorderproductoffer.php index 52cce692..11a98aa4 100644 --- a/intaro.retailcrm/lib/model/api/serializedorderproductoffer.php +++ b/intaro.retailcrm/lib/model/api/serializedorderproductoffer.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedorderreference.php b/intaro.retailcrm/lib/model/api/serializedorderreference.php index 89ea9cdb..cda9ef40 100644 --- a/intaro.retailcrm/lib/model/api/serializedorderreference.php +++ b/intaro.retailcrm/lib/model/api/serializedorderreference.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/serializedrelationcustomer.php b/intaro.retailcrm/lib/model/api/serializedrelationcustomer.php index f5f68891..178bf1a6 100644 --- a/intaro.retailcrm/lib/model/api/serializedrelationcustomer.php +++ b/intaro.retailcrm/lib/model/api/serializedrelationcustomer.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/smsverification.php b/intaro.retailcrm/lib/model/api/smsverification.php index 2ae0bf4c..74b0c319 100644 --- a/intaro.retailcrm/lib/model/api/smsverification.php +++ b/intaro.retailcrm/lib/model/api/smsverification.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/smsverificationconfirm.php b/intaro.retailcrm/lib/model/api/smsverificationconfirm.php index c3f978fb..e5fedf8c 100644 --- a/intaro.retailcrm/lib/model/api/smsverificationconfirm.php +++ b/intaro.retailcrm/lib/model/api/smsverificationconfirm.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/timeinterval.php b/intaro.retailcrm/lib/model/api/timeinterval.php index 28b5ae1e..60c9d499 100644 --- a/intaro.retailcrm/lib/model/api/timeinterval.php +++ b/intaro.retailcrm/lib/model/api/timeinterval.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/api/user.php b/intaro.retailcrm/lib/model/api/user.php index e11f5891..1bf9d775 100644 --- a/intaro.retailcrm/lib/model/api/user.php +++ b/intaro.retailcrm/lib/model/api/user.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/abstractmodelproxy.php b/intaro.retailcrm/lib/model/bitrix/abstractmodelproxy.php index dc800d4c..60d50ba6 100644 --- a/intaro.retailcrm/lib/model/bitrix/abstractmodelproxy.php +++ b/intaro.retailcrm/lib/model/bitrix/abstractmodelproxy.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/abstractserializablemodel.php b/intaro.retailcrm/lib/model/bitrix/abstractserializablemodel.php index ad0ae99c..ca8d20e2 100644 --- a/intaro.retailcrm/lib/model/bitrix/abstractserializablemodel.php +++ b/intaro.retailcrm/lib/model/bitrix/abstractserializablemodel.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/agreement.php b/intaro.retailcrm/lib/model/bitrix/agreement.php index 173e2482..b65a73e8 100644 --- a/intaro.retailcrm/lib/model/bitrix/agreement.php +++ b/intaro.retailcrm/lib/model/bitrix/agreement.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/buyerprofile.php b/intaro.retailcrm/lib/model/bitrix/buyerprofile.php index 0cbc6eec..bd0945a1 100644 --- a/intaro.retailcrm/lib/model/bitrix/buyerprofile.php +++ b/intaro.retailcrm/lib/model/bitrix/buyerprofile.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/fuser.php b/intaro.retailcrm/lib/model/bitrix/fuser.php index 2f46203f..3f66d0d9 100644 --- a/intaro.retailcrm/lib/model/bitrix/fuser.php +++ b/intaro.retailcrm/lib/model/bitrix/fuser.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/orderloyaltydata.php b/intaro.retailcrm/lib/model/bitrix/orderloyaltydata.php index 0125fd97..07c05c72 100644 --- a/intaro.retailcrm/lib/model/bitrix/orderloyaltydata.php +++ b/intaro.retailcrm/lib/model/bitrix/orderloyaltydata.php @@ -1,8 +1,6 @@ @@ -136,8 +134,3 @@ class OrderLoyaltyData */ public $bonusCountTotal; } - - - - - diff --git a/intaro.retailcrm/lib/model/bitrix/orderprops.php b/intaro.retailcrm/lib/model/bitrix/orderprops.php index 5b359515..72a9837b 100644 --- a/intaro.retailcrm/lib/model/bitrix/orderprops.php +++ b/intaro.retailcrm/lib/model/bitrix/orderprops.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/paysystemaction.php b/intaro.retailcrm/lib/model/bitrix/paysystemaction.php index f8a22107..e9c1733e 100644 --- a/intaro.retailcrm/lib/model/bitrix/paysystemaction.php +++ b/intaro.retailcrm/lib/model/bitrix/paysystemaction.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/smscookie.php b/intaro.retailcrm/lib/model/bitrix/smscookie.php index 6e393d01..2c409bdb 100644 --- a/intaro.retailcrm/lib/model/bitrix/smscookie.php +++ b/intaro.retailcrm/lib/model/bitrix/smscookie.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/tomodule.php b/intaro.retailcrm/lib/model/bitrix/tomodule.php index 798b8a46..44da4e91 100644 --- a/intaro.retailcrm/lib/model/bitrix/tomodule.php +++ b/intaro.retailcrm/lib/model/bitrix/tomodule.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/user.php b/intaro.retailcrm/lib/model/bitrix/user.php index 205b9d71..948d600d 100644 --- a/intaro.retailcrm/lib/model/bitrix/user.php +++ b/intaro.retailcrm/lib/model/bitrix/user.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/userloyaltydata.php b/intaro.retailcrm/lib/model/bitrix/userloyaltydata.php index a29b1aa8..fb1141ec 100644 --- a/intaro.retailcrm/lib/model/bitrix/userloyaltydata.php +++ b/intaro.retailcrm/lib/model/bitrix/userloyaltydata.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/model/bitrix/xml/offerparam.php b/intaro.retailcrm/lib/model/bitrix/xml/offerparam.php index e1d59b4f..48685a09 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/offerparam.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/offerparam.php @@ -1,9 +1,7 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/selectparams.php b/intaro.retailcrm/lib/model/bitrix/xml/selectparams.php index 22a9f7ea..13f84ce4 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/selectparams.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/selectparams.php @@ -1,9 +1,7 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/unit.php b/intaro.retailcrm/lib/model/bitrix/xml/unit.php index b2abebaf..20699df8 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/unit.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/unit.php @@ -1,9 +1,7 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/xmlcategory.php b/intaro.retailcrm/lib/model/bitrix/xml/xmlcategory.php index dc97ebe0..4b34d88b 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/xmlcategory.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/xmlcategory.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/xmldata.php b/intaro.retailcrm/lib/model/bitrix/xml/xmldata.php index c402bb8d..9b759355 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/xmldata.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/xmldata.php @@ -1,9 +1,7 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/xmloffer.php b/intaro.retailcrm/lib/model/bitrix/xml/xmloffer.php index 04390b7a..9b10ae98 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/xmloffer.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/xmloffer.php @@ -1,9 +1,7 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/xmlsetup.php b/intaro.retailcrm/lib/model/bitrix/xml/xmlsetup.php index 6bd2e40d..d1475cb3 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/xmlsetup.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/xmlsetup.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/xmlsetupprops.php b/intaro.retailcrm/lib/model/bitrix/xml/xmlsetupprops.php index 618d42f6..1751bfb3 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/xmlsetupprops.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/xmlsetupprops.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/model/bitrix/xml/xmlsetuppropscategories.php b/intaro.retailcrm/lib/model/bitrix/xml/xmlsetuppropscategories.php index e3a3c778..b31f0f1d 100644 --- a/intaro.retailcrm/lib/model/bitrix/xml/xmlsetuppropscategories.php +++ b/intaro.retailcrm/lib/model/bitrix/xml/xmlsetuppropscategories.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/repository/abstractrepository.php b/intaro.retailcrm/lib/repository/abstractrepository.php index 34ca30fe..171cfb2f 100644 --- a/intaro.retailcrm/lib/repository/abstractrepository.php +++ b/intaro.retailcrm/lib/repository/abstractrepository.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/repository/agreementrepository.php b/intaro.retailcrm/lib/repository/agreementrepository.php index 3f1c9e7d..f93b5088 100644 --- a/intaro.retailcrm/lib/repository/agreementrepository.php +++ b/intaro.retailcrm/lib/repository/agreementrepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/buyerprofilerepository.php b/intaro.retailcrm/lib/repository/buyerprofilerepository.php index 0756f957..ad13c281 100644 --- a/intaro.retailcrm/lib/repository/buyerprofilerepository.php +++ b/intaro.retailcrm/lib/repository/buyerprofilerepository.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/repository/catalogrepository.php b/intaro.retailcrm/lib/repository/catalogrepository.php index 621a63e2..c4c75b01 100644 --- a/intaro.retailcrm/lib/repository/catalogrepository.php +++ b/intaro.retailcrm/lib/repository/catalogrepository.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Repository; use Bitrix\Catalog\StoreBarcodeTable; diff --git a/intaro.retailcrm/lib/repository/currencyrepository.php b/intaro.retailcrm/lib/repository/currencyrepository.php index 5363e2c4..7d974346 100644 --- a/intaro.retailcrm/lib/repository/currencyrepository.php +++ b/intaro.retailcrm/lib/repository/currencyrepository.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/repository/filerepository.php b/intaro.retailcrm/lib/repository/filerepository.php index c10308d4..2799d116 100644 --- a/intaro.retailcrm/lib/repository/filerepository.php +++ b/intaro.retailcrm/lib/repository/filerepository.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Repository; use CFile; diff --git a/intaro.retailcrm/lib/repository/fuserrepository.php b/intaro.retailcrm/lib/repository/fuserrepository.php index 801ad3e6..671ecaaf 100644 --- a/intaro.retailcrm/lib/repository/fuserrepository.php +++ b/intaro.retailcrm/lib/repository/fuserrepository.php @@ -1,10 +1,8 @@ * @license MIT * @link http://retailcrm.ru diff --git a/intaro.retailcrm/lib/repository/hlrepository.php b/intaro.retailcrm/lib/repository/hlrepository.php index ec467cf5..0adfe704 100644 --- a/intaro.retailcrm/lib/repository/hlrepository.php +++ b/intaro.retailcrm/lib/repository/hlrepository.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Repository; use Bitrix\Main\ArgumentException; diff --git a/intaro.retailcrm/lib/repository/managerrepository.php b/intaro.retailcrm/lib/repository/managerrepository.php index 4fcdf554..6fd0bb75 100644 --- a/intaro.retailcrm/lib/repository/managerrepository.php +++ b/intaro.retailcrm/lib/repository/managerrepository.php @@ -1,5 +1,13 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ namespace Intaro\RetailCrm\Repository; diff --git a/intaro.retailcrm/lib/repository/measurerepository.php b/intaro.retailcrm/lib/repository/measurerepository.php index 7958d467..05f23294 100644 --- a/intaro.retailcrm/lib/repository/measurerepository.php +++ b/intaro.retailcrm/lib/repository/measurerepository.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Repository; use Bitrix\Catalog\MeasureTable; diff --git a/intaro.retailcrm/lib/repository/orderloyaltydatarepository.php b/intaro.retailcrm/lib/repository/orderloyaltydatarepository.php index 12edbad8..5edf655a 100644 --- a/intaro.retailcrm/lib/repository/orderloyaltydatarepository.php +++ b/intaro.retailcrm/lib/repository/orderloyaltydatarepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/orderpropsrepository.php b/intaro.retailcrm/lib/repository/orderpropsrepository.php index 006787ff..87f9d3ff 100644 --- a/intaro.retailcrm/lib/repository/orderpropsrepository.php +++ b/intaro.retailcrm/lib/repository/orderpropsrepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/paysystemactionrepository.php b/intaro.retailcrm/lib/repository/paysystemactionrepository.php index 92bb7ca8..0027aaa2 100644 --- a/intaro.retailcrm/lib/repository/paysystemactionrepository.php +++ b/intaro.retailcrm/lib/repository/paysystemactionrepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/persontyperepository.php b/intaro.retailcrm/lib/repository/persontyperepository.php index 9e67a748..1873b1b0 100644 --- a/intaro.retailcrm/lib/repository/persontyperepository.php +++ b/intaro.retailcrm/lib/repository/persontyperepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/siterepository.php b/intaro.retailcrm/lib/repository/siterepository.php index 63a04e3f..1fca752d 100644 --- a/intaro.retailcrm/lib/repository/siterepository.php +++ b/intaro.retailcrm/lib/repository/siterepository.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Repository; use CSite; diff --git a/intaro.retailcrm/lib/repository/templaterepository.php b/intaro.retailcrm/lib/repository/templaterepository.php index eea55263..2ad306c5 100644 --- a/intaro.retailcrm/lib/repository/templaterepository.php +++ b/intaro.retailcrm/lib/repository/templaterepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/tomodulerepository.php b/intaro.retailcrm/lib/repository/tomodulerepository.php index 75cf8364..0a7e3505 100644 --- a/intaro.retailcrm/lib/repository/tomodulerepository.php +++ b/intaro.retailcrm/lib/repository/tomodulerepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/userloyaltydatarepository.php b/intaro.retailcrm/lib/repository/userloyaltydatarepository.php index d2d20d9b..572878bb 100644 --- a/intaro.retailcrm/lib/repository/userloyaltydatarepository.php +++ b/intaro.retailcrm/lib/repository/userloyaltydatarepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/repository/userrepository.php b/intaro.retailcrm/lib/repository/userrepository.php index e5a127ed..b770e4f9 100644 --- a/intaro.retailcrm/lib/repository/userrepository.php +++ b/intaro.retailcrm/lib/repository/userrepository.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/service/cookieservice.php b/intaro.retailcrm/lib/service/cookieservice.php index 97529921..1276eca5 100644 --- a/intaro.retailcrm/lib/service/cookieservice.php +++ b/intaro.retailcrm/lib/service/cookieservice.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/service/currencyservice.php b/intaro.retailcrm/lib/service/currencyservice.php index 0b906e23..4cd7aa15 100644 --- a/intaro.retailcrm/lib/service/currencyservice.php +++ b/intaro.retailcrm/lib/service/currencyservice.php @@ -1,8 +1,21 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Service; - +/** + * Class CurrencyService + * + * @package Intaro\RetailCrm\Service + */ class CurrencyService { public static function validateCurrency($cmsCurrency, $crmCurrency): string diff --git a/intaro.retailcrm/lib/service/customerservice.php b/intaro.retailcrm/lib/service/customerservice.php index 48605901..b976b236 100644 --- a/intaro.retailcrm/lib/service/customerservice.php +++ b/intaro.retailcrm/lib/service/customerservice.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/service/exception/lpaccountsavailableexception.php b/intaro.retailcrm/lib/service/exception/lpaccountsavailableexception.php index 9b305684..c25b0bf7 100644 --- a/intaro.retailcrm/lib/service/exception/lpaccountsavailableexception.php +++ b/intaro.retailcrm/lib/service/exception/lpaccountsavailableexception.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/service/hl.php b/intaro.retailcrm/lib/service/hl.php index 9723820b..051b55ba 100644 --- a/intaro.retailcrm/lib/service/hl.php +++ b/intaro.retailcrm/lib/service/hl.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Service; use Bitrix\Main\ArgumentException; diff --git a/intaro.retailcrm/lib/service/loyaltyaccountservice.php b/intaro.retailcrm/lib/service/loyaltyaccountservice.php index c2d76f77..7cba8856 100644 --- a/intaro.retailcrm/lib/service/loyaltyaccountservice.php +++ b/intaro.retailcrm/lib/service/loyaltyaccountservice.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/service/loyaltyservice.php b/intaro.retailcrm/lib/service/loyaltyservice.php index 638c33f0..610d43d0 100644 --- a/intaro.retailcrm/lib/service/loyaltyservice.php +++ b/intaro.retailcrm/lib/service/loyaltyservice.php @@ -1,8 +1,6 @@ @@ -545,4 +543,4 @@ class LoyaltyService return null; } -} \ No newline at end of file +} diff --git a/intaro.retailcrm/lib/service/managerservice.php b/intaro.retailcrm/lib/service/managerservice.php index cc7d791a..9c9d9041 100644 --- a/intaro.retailcrm/lib/service/managerservice.php +++ b/intaro.retailcrm/lib/service/managerservice.php @@ -1,5 +1,14 @@ + * @license MIT + * @link http://retailcrm.ru + * @see http://retailcrm.ru/docs + */ + namespace Intaro\RetailCrm\Service; use Bitrix\Main\ArgumentException; diff --git a/intaro.retailcrm/lib/service/orderloyaltydataservice.php b/intaro.retailcrm/lib/service/orderloyaltydataservice.php index e65f871c..16fa3980 100644 --- a/intaro.retailcrm/lib/service/orderloyaltydataservice.php +++ b/intaro.retailcrm/lib/service/orderloyaltydataservice.php @@ -1,8 +1,6 @@ diff --git a/intaro.retailcrm/lib/service/utils.php b/intaro.retailcrm/lib/service/utils.php index 80ee7813..e87292c9 100644 --- a/intaro.retailcrm/lib/service/utils.php +++ b/intaro.retailcrm/lib/service/utils.php @@ -1,8 +1,6 @@