From 84ecba8714bd7324bcb1d5761c9716bf27b4cc0f Mon Sep 17 00:00:00 2001 From: Alex Lushpai Date: Tue, 15 Dec 2020 13:34:43 +0300 Subject: [PATCH] Update product name, cleanup annotations (#14) --- LICENSE | 2 +- README.md | 11 ++--------- composer.json | 10 +++++----- src/Bot/Client.php | 6 ------ src/Bot/HttpClient.php | 6 ------ src/Bot/Model/Constants.php | 6 ------ src/Bot/Model/Entity/Bot.php | 6 ------ src/Bot/Model/Entity/Channel/Channel.php | 6 ------ src/Bot/Model/Entity/Channel/ChannelSettings.php | 6 ------ src/Bot/Model/Entity/Channel/ChannelSettingsItem.php | 6 ------ .../Model/Entity/Channel/ChannelSettingsStatus.php | 6 ------ src/Bot/Model/Entity/Chat/Chat.php | 6 ------ src/Bot/Model/Entity/Chat/ChatLastMessage.php | 6 ------ src/Bot/Model/Entity/Chat/ChatMember.php | 6 ------ src/Bot/Model/Entity/Command.php | 6 ------ src/Bot/Model/Entity/Customer.php | 6 ------ src/Bot/Model/Entity/Dialog.php | 6 ------ src/Bot/Model/Entity/FileMeta.php | 6 ------ src/Bot/Model/Entity/Message/Item.php | 6 ------ src/Bot/Model/Entity/Message/Message.php | 6 ------ src/Bot/Model/Entity/Message/MessageCost.php | 6 ------ src/Bot/Model/Entity/Message/MessageDelivery.php | 6 ------ src/Bot/Model/Entity/Message/MessageOrder.php | 6 ------ src/Bot/Model/Entity/Message/MessageOrderItem.php | 10 ---------- .../Entity/Message/MessageOrderPaymentStatus.php | 6 ------ src/Bot/Model/Entity/Message/MessagePayment.php | 6 ------ src/Bot/Model/Entity/Message/MessageProduct.php | 6 ------ src/Bot/Model/Entity/Message/MessageQuantity.php | 6 ------ src/Bot/Model/Entity/Message/MessageStatus.php | 6 ------ src/Bot/Model/Entity/Responsible.php | 6 ------ src/Bot/Model/Entity/User.php | 6 ------ src/Bot/Model/ModelAdapter.php | 6 ------ src/Bot/Model/ModelInterface.php | 3 --- src/Bot/Model/Request/BotsRequest.php | 6 ------ src/Bot/Model/Request/ChannelsRequest.php | 6 ------ src/Bot/Model/Request/ChatsRequest.php | 6 ------ src/Bot/Model/Request/CommandEditRequest.php | 6 ------ src/Bot/Model/Request/CommandsRequest.php | 6 ------ src/Bot/Model/Request/CommonFields.php | 6 ------ src/Bot/Model/Request/CustomersRequest.php | 6 ------ src/Bot/Model/Request/DialogAssignRequest.php | 6 ------ src/Bot/Model/Request/DialogsRequest.php | 6 ------ src/Bot/Model/Request/InfoRequest.php | 6 ------ src/Bot/Model/Request/MembersRequest.php | 6 ------ src/Bot/Model/Request/MessageEditRequest.php | 6 ------ src/Bot/Model/Request/MessageSendRequest.php | 6 ------ src/Bot/Model/Request/MessagesRequest.php | 6 ------ src/Bot/Model/Request/UploadFileByUrlRequest.php | 6 ------ src/Bot/Model/Request/UsersRequest.php | 6 ------ src/Bot/Model/Response/AssignResponse.php | 6 ------ src/Bot/Model/Response/CommonFields.php | 6 ------ src/Bot/Model/Response/ErrorOnlyResponse.php | 6 ------ src/Bot/Model/Response/FullFileResponse.php | 6 ------ src/Bot/Model/Response/MessageSendResponse.php | 6 ------ src/Bot/Model/Response/UploadFileResponse.php | 6 ------ src/Exception/InvalidJsonException.php | 6 ------ src/Exception/LimitException.php | 6 ------ src/Exception/NotFoundException.php | 6 ------ src/Exception/UnauthorizedException.php | 3 --- src/Register.php | 6 ------ src/Serializer.php | 6 ------ src/Url.php | 6 ------ tests/Bot/Test/TestCase.php | 6 ------ tests/Bot/Tests/ClientListTest.php | 6 ------ tests/Bot/Tests/CommandsTest.php | 6 ------ tests/Bot/Tests/DialogsTest.php | 6 ------ tests/Bot/Tests/FileTest.php | 6 ------ tests/Bot/Tests/MessagesTest.php | 6 ------ tests/Bot/Tests/RegisterTest.php | 6 ------ tests/Common/Tests/RegisterTest.php | 6 ------ 70 files changed, 8 insertions(+), 415 deletions(-) diff --git a/LICENSE b/LICENSE index 16ce40d..a2f6e55 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2019 RetailDriver LLC +Copyright (c) 2018-2020 RetailDriver LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index a5c01d3..f270d05 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,11 @@ [![Build Status](https://github.com/retailcrm/mg-bot-api-client-php/workflows/ci/badge.svg)](https://github.com/retailcrm/mg-bot-api-client-php/actions) -[![Covarage](https://img.shields.io/codecov/c/gh/retailcrm/mg-bot-api-client-php/master.svg?logo=codecov)](https://codecov.io/gh/retailcrm/mg-bot-api-client-php) +[![Coverage](https://img.shields.io/codecov/c/gh/retailcrm/mg-bot-api-client-php/master.svg?logo=codecov&logoColor=white)](https://codecov.io/gh/retailcrm/mg-bot-api-client-php) [![Latest stable](https://img.shields.io/packagist/v/retailcrm/mg-bot-api-client-php.svg)](https://packagist.org/packages/retailcrm/mg-bot-api-client-php) -[![PHP from Packagist](https://img.shields.io/packagist/php-v/retailcrm/mg-bot-api-client-php.svg)](https://packagist.org/packages/retailcrm/mg-bot-api-client-php) +[![PHP from Packagist](https://img.shields.io/packagist/php-v/retailcrm/mg-bot-api-client-php.svg?logo=php&logoColor=white)](https://packagist.org/packages/retailcrm/mg-bot-api-client-php) # Message Gateway Bot API PHP client -This is php library for retailCRM MG Bot API. - ## Requirements * PHP 7.1 and above @@ -53,8 +51,3 @@ try { echo $response->getPreviousResponsible(); ``` - -### Documentation - -* [English](https://help.retailcrm.pro/Developers/MgBot) -* [Russian](https://help.retailcrm.ru/Developers/MgBot) diff --git a/composer.json b/composer.json index 771d462..7d8ad0a 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,14 @@ { "name": "retailcrm/mg-bot-api-client-php", - "description": "PHP client for retailCRM MG Bot API", + "description": "PHP client for MG Bot API", "type": "library", - "keywords": ["API", "retailCRM", "REST", "bot"], + "keywords": ["API", "RetailCRM", "REST", "bot"], "homepage": "http://www.retailcrm.ru/", "license": "MIT", "authors": [ { - "name": "retailCRM", - "email": "support@retailcrm.ru" + "name": "RetailCRM", + "email": "support@retailcrm.pro" } ], "require": { @@ -29,7 +29,7 @@ "phpstan/phpstan": "0.11.*" }, "support": { - "email": "support@retailcrm.ru" + "email": "support@retailcrm.pro" }, "autoload": { "psr-4": { diff --git a/src/Bot/Client.php b/src/Bot/Client.php index 8a7ea9b..5b0cbfc 100644 --- a/src/Bot/Client.php +++ b/src/Bot/Client.php @@ -6,9 +6,6 @@ * Client * * @package RetailCrm\Mg\Bot - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot; @@ -37,9 +34,6 @@ use RetailCrm\Mg\Bot\Model\Response\UploadFileResponse; * Class Client * * @package RetailCrm\Mg\Bot - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Client { diff --git a/src/Bot/HttpClient.php b/src/Bot/HttpClient.php index 9711200..e750a33 100644 --- a/src/Bot/HttpClient.php +++ b/src/Bot/HttpClient.php @@ -6,9 +6,6 @@ * HttpClient * * @package RetailCrm\Mg\Bot - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot; @@ -35,9 +32,6 @@ use function GuzzleHttp\Psr7\stream_for; * Class HttpClient * * @package RetailCrm\Mg\Bot - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class HttpClient { diff --git a/src/Bot/Model/Constants.php b/src/Bot/Model/Constants.php index 281e0b8..c11a2d1 100644 --- a/src/Bot/Model/Constants.php +++ b/src/Bot/Model/Constants.php @@ -6,9 +6,6 @@ * Constants * * @package RetailCrm\Mg\Bot\Model - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model; @@ -17,9 +14,6 @@ namespace RetailCrm\Mg\Bot\Model; * Constants class * * @package RetailCrm\Mg\Bot\Model - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Constants { diff --git a/src/Bot/Model/Entity/Bot.php b/src/Bot/Model/Entity/Bot.php index 4fc8827..38f9189 100644 --- a/src/Bot/Model/Entity/Bot.php +++ b/src/Bot/Model/Entity/Bot.php @@ -6,9 +6,6 @@ * Bot entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Bot class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Bot implements ModelInterface { diff --git a/src/Bot/Model/Entity/Channel/Channel.php b/src/Bot/Model/Entity/Channel/Channel.php index c54d5d7..1b29e40 100644 --- a/src/Bot/Model/Entity/Channel/Channel.php +++ b/src/Bot/Model/Entity/Channel/Channel.php @@ -6,9 +6,6 @@ * Channel entity * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Channel; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Class Channel * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Channel implements ModelInterface { diff --git a/src/Bot/Model/Entity/Channel/ChannelSettings.php b/src/Bot/Model/Entity/Channel/ChannelSettings.php index 0389d32..06d3f3b 100644 --- a/src/Bot/Model/Entity/Channel/ChannelSettings.php +++ b/src/Bot/Model/Entity/Channel/ChannelSettings.php @@ -6,9 +6,6 @@ * ChannelSettings entity * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Channel; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Class ChannelSettings * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChannelSettings implements ModelInterface { diff --git a/src/Bot/Model/Entity/Channel/ChannelSettingsItem.php b/src/Bot/Model/Entity/Channel/ChannelSettingsItem.php index 71a22f7..9477fda 100644 --- a/src/Bot/Model/Entity/Channel/ChannelSettingsItem.php +++ b/src/Bot/Model/Entity/Channel/ChannelSettingsItem.php @@ -6,9 +6,6 @@ * ChannelSettingsItem entity * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Channel; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ChannelSettingsItem class * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChannelSettingsItem implements ModelInterface { diff --git a/src/Bot/Model/Entity/Channel/ChannelSettingsStatus.php b/src/Bot/Model/Entity/Channel/ChannelSettingsStatus.php index a638036..f17dbe0 100644 --- a/src/Bot/Model/Entity/Channel/ChannelSettingsStatus.php +++ b/src/Bot/Model/Entity/Channel/ChannelSettingsStatus.php @@ -6,9 +6,6 @@ * ChannelSettingsStatus entity * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Channel; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ChannelSettingsStatus class * * @package RetailCrm\Mg\Bot\Model\Entity\Channel - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChannelSettingsStatus implements ModelInterface { diff --git a/src/Bot/Model/Entity/Chat/Chat.php b/src/Bot/Model/Entity/Chat/Chat.php index 9a12f67..ff59a90 100644 --- a/src/Bot/Model/Entity/Chat/Chat.php +++ b/src/Bot/Model/Entity/Chat/Chat.php @@ -6,9 +6,6 @@ * Chat entity * * @package RetailCrm\Mg\Bot\Model\Entity\Chat - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Chat; @@ -24,9 +21,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Chat class * * @package RetailCrm\Mg\Bot\Model\Entity\Chat - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Chat implements ModelInterface { diff --git a/src/Bot/Model/Entity/Chat/ChatLastMessage.php b/src/Bot/Model/Entity/Chat/ChatLastMessage.php index 2da7277..7089b6c 100644 --- a/src/Bot/Model/Entity/Chat/ChatLastMessage.php +++ b/src/Bot/Model/Entity/Chat/ChatLastMessage.php @@ -6,9 +6,6 @@ * ChatLastMessage entity * * @package RetailCrm\Mg\Bot\Model\Entity\Chat - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Chat; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ChatLastMessage class * * @package RetailCrm\Mg\Bot\Model\Entity\Chat - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChatLastMessage implements ModelInterface { diff --git a/src/Bot/Model/Entity/Chat/ChatMember.php b/src/Bot/Model/Entity/Chat/ChatMember.php index e2a0c5a..b483c69 100644 --- a/src/Bot/Model/Entity/Chat/ChatMember.php +++ b/src/Bot/Model/Entity/Chat/ChatMember.php @@ -6,9 +6,6 @@ * ChatMember entity * * @package RetailCrm\Mg\Bot\Model\Entity\Chat - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Chat; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ChatMember class * * @package RetailCrm\Mg\Bot\Model\Entity\Chat - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChatMember implements ModelInterface { diff --git a/src/Bot/Model/Entity/Command.php b/src/Bot/Model/Entity/Command.php index 1896d8f..ab7d48b 100644 --- a/src/Bot/Model/Entity/Command.php +++ b/src/Bot/Model/Entity/Command.php @@ -6,9 +6,6 @@ * Command entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Command class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Command implements ModelInterface { diff --git a/src/Bot/Model/Entity/Customer.php b/src/Bot/Model/Entity/Customer.php index 0920a18..4c6b356 100644 --- a/src/Bot/Model/Entity/Customer.php +++ b/src/Bot/Model/Entity/Customer.php @@ -6,9 +6,6 @@ * Customer entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -23,9 +20,6 @@ use JMS\Serializer\Annotation\Type; * Customer class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Customer implements ModelInterface { diff --git a/src/Bot/Model/Entity/Dialog.php b/src/Bot/Model/Entity/Dialog.php index 7f96ad7..db539b3 100644 --- a/src/Bot/Model/Entity/Dialog.php +++ b/src/Bot/Model/Entity/Dialog.php @@ -6,9 +6,6 @@ * Dialog entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Dialog class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Dialog implements ModelInterface { diff --git a/src/Bot/Model/Entity/FileMeta.php b/src/Bot/Model/Entity/FileMeta.php index c46452d..e869db2 100644 --- a/src/Bot/Model/Entity/FileMeta.php +++ b/src/Bot/Model/Entity/FileMeta.php @@ -6,9 +6,6 @@ * FileMeta entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * FileMeta class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class FileMeta implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/Item.php b/src/Bot/Model/Entity/Message/Item.php index 821e126..8e1df1b 100644 --- a/src/Bot/Model/Entity/Message/Item.php +++ b/src/Bot/Model/Entity/Message/Item.php @@ -6,9 +6,6 @@ * Item entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Item class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Item implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/Message.php b/src/Bot/Model/Entity/Message/Message.php index 8f068c3..324f6a8 100644 --- a/src/Bot/Model/Entity/Message/Message.php +++ b/src/Bot/Model/Entity/Message/Message.php @@ -6,9 +6,6 @@ * Message entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -24,9 +21,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Message class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Message implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageCost.php b/src/Bot/Model/Entity/Message/MessageCost.php index 8308923..0f6318b 100644 --- a/src/Bot/Model/Entity/Message/MessageCost.php +++ b/src/Bot/Model/Entity/Message/MessageCost.php @@ -6,9 +6,6 @@ * MessageCost entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageCost class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageCost implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageDelivery.php b/src/Bot/Model/Entity/Message/MessageDelivery.php index 94c737d..28f6225 100644 --- a/src/Bot/Model/Entity/Message/MessageDelivery.php +++ b/src/Bot/Model/Entity/Message/MessageDelivery.php @@ -6,9 +6,6 @@ * MessageDelivery entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageDelivery class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageDelivery implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageOrder.php b/src/Bot/Model/Entity/Message/MessageOrder.php index 5247e17..ccdd859 100644 --- a/src/Bot/Model/Entity/Message/MessageOrder.php +++ b/src/Bot/Model/Entity/Message/MessageOrder.php @@ -6,9 +6,6 @@ * MessageOrder entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageOrder class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageOrder implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageOrderItem.php b/src/Bot/Model/Entity/Message/MessageOrderItem.php index fcbf53a..dd5b225 100644 --- a/src/Bot/Model/Entity/Message/MessageOrderItem.php +++ b/src/Bot/Model/Entity/Message/MessageOrderItem.php @@ -4,11 +4,6 @@ * PHP version 7.1 * * MessageOrderItem entity - * - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * - * @see http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -20,11 +15,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; /** * MessageOrderItem class - * - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * - * @see http://help.retailcrm.pro/docs/Developers */ class MessageOrderItem implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageOrderPaymentStatus.php b/src/Bot/Model/Entity/Message/MessageOrderPaymentStatus.php index 46cd5a8..c71951c 100644 --- a/src/Bot/Model/Entity/Message/MessageOrderPaymentStatus.php +++ b/src/Bot/Model/Entity/Message/MessageOrderPaymentStatus.php @@ -6,9 +6,6 @@ * MessageOrderPaymentStatus entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageOrderPaymentStatus class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageOrderPaymentStatus implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessagePayment.php b/src/Bot/Model/Entity/Message/MessagePayment.php index e022a62..5938171 100644 --- a/src/Bot/Model/Entity/Message/MessagePayment.php +++ b/src/Bot/Model/Entity/Message/MessagePayment.php @@ -6,9 +6,6 @@ * MessagePayment entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessagePayment class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessagePayment implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageProduct.php b/src/Bot/Model/Entity/Message/MessageProduct.php index 861e13e..9a7484b 100644 --- a/src/Bot/Model/Entity/Message/MessageProduct.php +++ b/src/Bot/Model/Entity/Message/MessageProduct.php @@ -6,9 +6,6 @@ * MessageProduct entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageProduct class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageProduct implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageQuantity.php b/src/Bot/Model/Entity/Message/MessageQuantity.php index 9cfc426..5d565c7 100644 --- a/src/Bot/Model/Entity/Message/MessageQuantity.php +++ b/src/Bot/Model/Entity/Message/MessageQuantity.php @@ -6,9 +6,6 @@ * MessageQuantity entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageQuantity class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageQuantity implements ModelInterface { diff --git a/src/Bot/Model/Entity/Message/MessageStatus.php b/src/Bot/Model/Entity/Message/MessageStatus.php index 97bc0c5..d66257f 100644 --- a/src/Bot/Model/Entity/Message/MessageStatus.php +++ b/src/Bot/Model/Entity/Message/MessageStatus.php @@ -6,9 +6,6 @@ * MessageStatus entity * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity\Message; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageStatus class * * @package RetailCrm\Mg\Bot\Model\Entity\Message - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageStatus implements ModelInterface { diff --git a/src/Bot/Model/Entity/Responsible.php b/src/Bot/Model/Entity/Responsible.php index 08d903e..55a5c3a 100644 --- a/src/Bot/Model/Entity/Responsible.php +++ b/src/Bot/Model/Entity/Responsible.php @@ -6,9 +6,6 @@ * Responsible entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * Responsible class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Responsible implements ModelInterface { diff --git a/src/Bot/Model/Entity/User.php b/src/Bot/Model/Entity/User.php index e87d3ed..1f959a2 100644 --- a/src/Bot/Model/Entity/User.php +++ b/src/Bot/Model/Entity/User.php @@ -6,9 +6,6 @@ * User entity * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Entity; @@ -23,9 +20,6 @@ use JMS\Serializer\Annotation\Type; * User class * * @package RetailCrm\Mg\Bot\Model\Entity - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class User implements ModelInterface { diff --git a/src/Bot/Model/ModelAdapter.php b/src/Bot/Model/ModelAdapter.php index 9d07262..2a4b252 100644 --- a/src/Bot/Model/ModelAdapter.php +++ b/src/Bot/Model/ModelAdapter.php @@ -6,9 +6,6 @@ * ModelAdapter * * @package RetailCrm\Mg\Bot\Adapter - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model; @@ -21,9 +18,6 @@ use RetailCrm\Common\Serializer; * Class ModelAdapter * * @package RetailCrm\Mg\Bot\Adapter - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ModelAdapter { diff --git a/src/Bot/Model/ModelInterface.php b/src/Bot/Model/ModelInterface.php index c32d8e9..731a408 100644 --- a/src/Bot/Model/ModelInterface.php +++ b/src/Bot/Model/ModelInterface.php @@ -5,9 +5,6 @@ * ModelInterface * * @package RetailCrm\Mg\Bot\Model - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model; diff --git a/src/Bot/Model/Request/BotsRequest.php b/src/Bot/Model/Request/BotsRequest.php index 9a85f2c..864b850 100644 --- a/src/Bot/Model/Request/BotsRequest.php +++ b/src/Bot/Model/Request/BotsRequest.php @@ -6,9 +6,6 @@ * Bots Request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * BotsRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class BotsRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/ChannelsRequest.php b/src/Bot/Model/Request/ChannelsRequest.php index 9cb757e..29942e5 100644 --- a/src/Bot/Model/Request/ChannelsRequest.php +++ b/src/Bot/Model/Request/ChannelsRequest.php @@ -6,9 +6,6 @@ * Channels list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ChannelsRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChannelsRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/ChatsRequest.php b/src/Bot/Model/Request/ChatsRequest.php index 29b2199..2b0666c 100644 --- a/src/Bot/Model/Request/ChatsRequest.php +++ b/src/Bot/Model/Request/ChatsRequest.php @@ -6,9 +6,6 @@ * Chats list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ChatsRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ChatsRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/CommandEditRequest.php b/src/Bot/Model/Request/CommandEditRequest.php index a455be5..3c8cce2 100644 --- a/src/Bot/Model/Request/CommandEditRequest.php +++ b/src/Bot/Model/Request/CommandEditRequest.php @@ -6,9 +6,6 @@ * Edit Command Request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * CommandEditRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class CommandEditRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/CommandsRequest.php b/src/Bot/Model/Request/CommandsRequest.php index ca8cbf1..a40ec76 100644 --- a/src/Bot/Model/Request/CommandsRequest.php +++ b/src/Bot/Model/Request/CommandsRequest.php @@ -6,9 +6,6 @@ * Commands list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * CommandsRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class CommandsRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/CommonFields.php b/src/Bot/Model/Request/CommonFields.php index 7fc5b31..0bf1f2d 100644 --- a/src/Bot/Model/Request/CommonFields.php +++ b/src/Bot/Model/Request/CommonFields.php @@ -6,9 +6,6 @@ * Common fields * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -21,9 +18,6 @@ use JMS\Serializer\Annotation\Type; * CommonFields trait * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ trait CommonFields { diff --git a/src/Bot/Model/Request/CustomersRequest.php b/src/Bot/Model/Request/CustomersRequest.php index 66a4f85..eefe588 100644 --- a/src/Bot/Model/Request/CustomersRequest.php +++ b/src/Bot/Model/Request/CustomersRequest.php @@ -6,9 +6,6 @@ * Customers list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * CustomersRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class CustomersRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/DialogAssignRequest.php b/src/Bot/Model/Request/DialogAssignRequest.php index ee81546..cb4e9b8 100644 --- a/src/Bot/Model/Request/DialogAssignRequest.php +++ b/src/Bot/Model/Request/DialogAssignRequest.php @@ -6,9 +6,6 @@ * Dialog assign request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * DialogAssignRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class DialogAssignRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/DialogsRequest.php b/src/Bot/Model/Request/DialogsRequest.php index 53999e8..9233415 100644 --- a/src/Bot/Model/Request/DialogsRequest.php +++ b/src/Bot/Model/Request/DialogsRequest.php @@ -6,9 +6,6 @@ * Dialogs list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * DialogsRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class DialogsRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/InfoRequest.php b/src/Bot/Model/Request/InfoRequest.php index 156823d..4fcc8bb 100644 --- a/src/Bot/Model/Request/InfoRequest.php +++ b/src/Bot/Model/Request/InfoRequest.php @@ -6,9 +6,6 @@ * Bot info request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * InfoRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class InfoRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/MembersRequest.php b/src/Bot/Model/Request/MembersRequest.php index dcf1e7c..dabba66 100644 --- a/src/Bot/Model/Request/MembersRequest.php +++ b/src/Bot/Model/Request/MembersRequest.php @@ -6,9 +6,6 @@ * Members list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MembersRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MembersRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/MessageEditRequest.php b/src/Bot/Model/Request/MessageEditRequest.php index 4858d85..8b83db7 100644 --- a/src/Bot/Model/Request/MessageEditRequest.php +++ b/src/Bot/Model/Request/MessageEditRequest.php @@ -6,9 +6,6 @@ * Messages edit request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageEditRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageEditRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/MessageSendRequest.php b/src/Bot/Model/Request/MessageSendRequest.php index c2cd4b1..1cc0ac5 100644 --- a/src/Bot/Model/Request/MessageSendRequest.php +++ b/src/Bot/Model/Request/MessageSendRequest.php @@ -6,9 +6,6 @@ * Messages send request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -26,9 +23,6 @@ use Symfony\Component\Validator\Constraints as Assert; * MessageSendRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageSendRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/MessagesRequest.php b/src/Bot/Model/Request/MessagesRequest.php index 2b961fd..c15bccf 100644 --- a/src/Bot/Model/Request/MessagesRequest.php +++ b/src/Bot/Model/Request/MessagesRequest.php @@ -6,9 +6,6 @@ * Messages list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessagesRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessagesRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/UploadFileByUrlRequest.php b/src/Bot/Model/Request/UploadFileByUrlRequest.php index 716b24b..8951812 100644 --- a/src/Bot/Model/Request/UploadFileByUrlRequest.php +++ b/src/Bot/Model/Request/UploadFileByUrlRequest.php @@ -6,9 +6,6 @@ * Upload file by url request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use Symfony\Component\Validator\Constraints as Assert; * UploadFileByUrlRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class UploadFileByUrlRequest implements ModelInterface { diff --git a/src/Bot/Model/Request/UsersRequest.php b/src/Bot/Model/Request/UsersRequest.php index 3b9ddb9..fc2436e 100644 --- a/src/Bot/Model/Request/UsersRequest.php +++ b/src/Bot/Model/Request/UsersRequest.php @@ -6,9 +6,6 @@ * Users list request * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Request; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * UsersRequest class * * @package RetailCrm\Mg\Bot\Model\Request - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class UsersRequest implements ModelInterface { diff --git a/src/Bot/Model/Response/AssignResponse.php b/src/Bot/Model/Response/AssignResponse.php index 6b7b897..3f92a2d 100644 --- a/src/Bot/Model/Response/AssignResponse.php +++ b/src/Bot/Model/Response/AssignResponse.php @@ -6,9 +6,6 @@ * AssignResponse * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Response; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * AssignResponse class * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class AssignResponse implements ModelInterface { diff --git a/src/Bot/Model/Response/CommonFields.php b/src/Bot/Model/Response/CommonFields.php index ce3654c..e714948 100644 --- a/src/Bot/Model/Response/CommonFields.php +++ b/src/Bot/Model/Response/CommonFields.php @@ -6,9 +6,6 @@ * ErrorTrait * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Response; @@ -22,9 +19,6 @@ use JMS\Serializer\Annotation\Type; * CommonFields trait * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ trait CommonFields { diff --git a/src/Bot/Model/Response/ErrorOnlyResponse.php b/src/Bot/Model/Response/ErrorOnlyResponse.php index da6f6da..071e5a4 100644 --- a/src/Bot/Model/Response/ErrorOnlyResponse.php +++ b/src/Bot/Model/Response/ErrorOnlyResponse.php @@ -6,9 +6,6 @@ * ErrorOnlyResponse * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Response; @@ -19,9 +16,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * ErrorOnlyResponse class * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ErrorOnlyResponse implements ModelInterface { diff --git a/src/Bot/Model/Response/FullFileResponse.php b/src/Bot/Model/Response/FullFileResponse.php index 046a0cb..fc62147 100644 --- a/src/Bot/Model/Response/FullFileResponse.php +++ b/src/Bot/Model/Response/FullFileResponse.php @@ -6,9 +6,6 @@ * FullFileResponse * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Response; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * FullFileResponse class * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class FullFileResponse implements ModelInterface { diff --git a/src/Bot/Model/Response/MessageSendResponse.php b/src/Bot/Model/Response/MessageSendResponse.php index 34ac5ea..4943010 100644 --- a/src/Bot/Model/Response/MessageSendResponse.php +++ b/src/Bot/Model/Response/MessageSendResponse.php @@ -6,9 +6,6 @@ * MessageSendResponse * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Response; @@ -22,9 +19,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * MessageSendResponse class * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessageSendResponse implements ModelInterface { diff --git a/src/Bot/Model/Response/UploadFileResponse.php b/src/Bot/Model/Response/UploadFileResponse.php index c439bd0..1d7b794 100644 --- a/src/Bot/Model/Response/UploadFileResponse.php +++ b/src/Bot/Model/Response/UploadFileResponse.php @@ -6,9 +6,6 @@ * UploadFileResponse * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Model\Response; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\ModelInterface; * UploadFileResponse class * * @package RetailCrm\Mg\Bot\Model\Response - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class UploadFileResponse implements ModelInterface { diff --git a/src/Exception/InvalidJsonException.php b/src/Exception/InvalidJsonException.php index 8fdd34e..79c549d 100644 --- a/src/Exception/InvalidJsonException.php +++ b/src/Exception/InvalidJsonException.php @@ -6,9 +6,6 @@ * InvalidJsonException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common\Exception; @@ -20,9 +17,6 @@ use Throwable; * Class InvalidJsonException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class InvalidJsonException extends DomainException implements Throwable { diff --git a/src/Exception/LimitException.php b/src/Exception/LimitException.php index 1e8e8f5..4b09b6d 100644 --- a/src/Exception/LimitException.php +++ b/src/Exception/LimitException.php @@ -6,9 +6,6 @@ * LimitException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common\Exception; @@ -20,9 +17,6 @@ use Throwable; * Class LimitException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class LimitException extends DomainException implements Throwable { diff --git a/src/Exception/NotFoundException.php b/src/Exception/NotFoundException.php index 3d5edf0..3513c10 100644 --- a/src/Exception/NotFoundException.php +++ b/src/Exception/NotFoundException.php @@ -5,9 +5,6 @@ * NotFoundException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common\Exception; @@ -19,9 +16,6 @@ use Throwable; * Class NotFoundException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class NotFoundException extends DomainException implements Throwable { diff --git a/src/Exception/UnauthorizedException.php b/src/Exception/UnauthorizedException.php index 93c257c..06ef5ec 100644 --- a/src/Exception/UnauthorizedException.php +++ b/src/Exception/UnauthorizedException.php @@ -5,9 +5,6 @@ * UnauthorizedException * * @package RetailCrm\Common\Exception - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common\Exception; diff --git a/src/Register.php b/src/Register.php index 828a885..eb8c453 100644 --- a/src/Register.php +++ b/src/Register.php @@ -6,9 +6,6 @@ * Register * * @package RetailCrm\Common - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common; @@ -23,9 +20,6 @@ use Symfony\Component\Validator\Constraints as Assert; * Class Register * * @package RetailCrm\Common - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Register { diff --git a/src/Serializer.php b/src/Serializer.php index 0ef3805..c3d8f96 100644 --- a/src/Serializer.php +++ b/src/Serializer.php @@ -6,9 +6,6 @@ * Serializer * * @package RetailCrm\Common - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Model\Response\ErrorOnlyResponse; * Class Serializer * * @package RetailCrm\Common - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Serializer { diff --git a/src/Url.php b/src/Url.php index a43824f..8bc3863 100644 --- a/src/Url.php +++ b/src/Url.php @@ -6,9 +6,6 @@ * Url * * @package RetailCrm\Common - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common; @@ -17,9 +14,6 @@ namespace RetailCrm\Common; * Class Url * * @package RetailCrm\Common - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class Url { diff --git a/tests/Bot/Test/TestCase.php b/tests/Bot/Test/TestCase.php index e30637c..0d16c6c 100644 --- a/tests/Bot/Test/TestCase.php +++ b/tests/Bot/Test/TestCase.php @@ -6,9 +6,6 @@ * Test case class * * @package Test - * @author RetailCrm - * @license https://opensource.org/licenses/MIT MIT License - * @link http://www.retailcrm.ru/docs/Developers/ApiVersion5 */ namespace RetailCrm\Mg\Bot\Test; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Client; * Class TestCase * * @package Test - * @author RetailCrm - * @license https://opensource.org/licenses/MIT MIT License - * @link http://www.retailcrm.ru/docs/Developers/ApiVersion5 */ class TestCase extends BaseCase { diff --git a/tests/Bot/Tests/ClientListTest.php b/tests/Bot/Tests/ClientListTest.php index f600802..6e30dd2 100644 --- a/tests/Bot/Tests/ClientListTest.php +++ b/tests/Bot/Tests/ClientListTest.php @@ -6,9 +6,6 @@ * Client Test * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Tests; @@ -30,9 +27,6 @@ use RetailCrm\Mg\Bot\Test\TestCase; * Class ClientListTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class ClientListTest extends TestCase { diff --git a/tests/Bot/Tests/CommandsTest.php b/tests/Bot/Tests/CommandsTest.php index ee48bc9..f4748c0 100644 --- a/tests/Bot/Tests/CommandsTest.php +++ b/tests/Bot/Tests/CommandsTest.php @@ -6,9 +6,6 @@ * Commands Test * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Tests; @@ -24,9 +21,6 @@ use RetailCrm\Mg\Bot\Test\TestCase; * Class CommandsTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class CommandsTest extends TestCase { diff --git a/tests/Bot/Tests/DialogsTest.php b/tests/Bot/Tests/DialogsTest.php index b21901a..e8e5312 100644 --- a/tests/Bot/Tests/DialogsTest.php +++ b/tests/Bot/Tests/DialogsTest.php @@ -7,9 +7,6 @@ * * @package RetailCrm\Mg\Bot\Tests * @category Test - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Tests; @@ -27,9 +24,6 @@ use RetailCrm\Mg\Bot\Test\TestCase; * Class DialogsTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class DialogsTest extends TestCase { diff --git a/tests/Bot/Tests/FileTest.php b/tests/Bot/Tests/FileTest.php index fef0d16..486da4a 100644 --- a/tests/Bot/Tests/FileTest.php +++ b/tests/Bot/Tests/FileTest.php @@ -6,9 +6,6 @@ * Upload file Test * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Tests; @@ -23,9 +20,6 @@ use RetailCrm\Mg\Bot\Test\TestCase; * Class UploadFileTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class FileTest extends TestCase { diff --git a/tests/Bot/Tests/MessagesTest.php b/tests/Bot/Tests/MessagesTest.php index 28bb46d..bff2943 100644 --- a/tests/Bot/Tests/MessagesTest.php +++ b/tests/Bot/Tests/MessagesTest.php @@ -6,9 +6,6 @@ * Messages Test * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Tests; @@ -33,9 +30,6 @@ use RetailCrm\Mg\Bot\Test\TestCase; * Class MessagesTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class MessagesTest extends TestCase { diff --git a/tests/Bot/Tests/RegisterTest.php b/tests/Bot/Tests/RegisterTest.php index e60e86f..7494766 100644 --- a/tests/Bot/Tests/RegisterTest.php +++ b/tests/Bot/Tests/RegisterTest.php @@ -4,9 +4,6 @@ * * RegisterTest.php * - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Mg\Bot\Tests; @@ -20,9 +17,6 @@ use RetailCrm\Mg\Bot\Test\TestCase; * Class RegisterTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class RegisterTest extends TestCase { diff --git a/tests/Common/Tests/RegisterTest.php b/tests/Common/Tests/RegisterTest.php index 18681a7..ba8b9b8 100644 --- a/tests/Common/Tests/RegisterTest.php +++ b/tests/Common/Tests/RegisterTest.php @@ -5,9 +5,6 @@ * Class RegisterTest * * @package RetailCrm\Common\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ namespace RetailCrm\Common\Tests; @@ -19,9 +16,6 @@ use PHPUnit\Framework\TestCase; * Class RegisterTest * * @package RetailCrm\Mg\Bot\Tests - * @author retailCRM - * @license https://opensource.org/licenses/MIT MIT License - * @link http://help.retailcrm.pro/docs/Developers */ class RegisterTest extends TestCase {