@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | /** |
| 96 | 96 | * Sets entity |
| 97 | 97 | * |
| 98 | - * @param EntityInterface $entity Entity object |
|
| 98 | + * @param \Teebot\Api\Entity\EntityInterface $entity Entity object |
|
| 99 | 99 | * |
| 100 | 100 | * @return EventInterface |
| 101 | 101 | */ |
@@ -111,7 +111,7 @@ discard block |
||
| 111 | 111 | * |
| 112 | 112 | * @param string $text Message text |
| 113 | 113 | * |
| 114 | - * @return Response |
|
| 114 | + * @return \Teebot\Api\Response |
|
| 115 | 115 | */ |
| 116 | 116 | protected function sendMessage(string $text): Response |
| 117 | 117 | { |
@@ -124,9 +124,9 @@ discard block |
||
| 124 | 124 | /** |
| 125 | 125 | * Replies on the message |
| 126 | 126 | * |
| 127 | - * @param SendMessage $sendMessage Object of the SendMessage method |
|
| 127 | + * @param \Teebot\Api\Method\SendMessage $sendMessage Object of the SendMessage method |
|
| 128 | 128 | * |
| 129 | - * @return Response |
|
| 129 | + * @return \Teebot\Api\Response |
|
| 130 | 130 | */ |
| 131 | 131 | protected function reply(SendMessage $sendMessage): Response |
| 132 | 132 | { |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | protected $httpClient; |
| 51 | 51 | |
| 52 | 52 | /** |
| 53 | - * @param ContainerInterface $config |
|
| 54 | - * @param HttpClient $httpClient |
|
| 53 | + * @param \Teebot\Configuration\ContainerInterface $config |
|
| 54 | + * @param \Teebot\Api\HttpClient $httpClient |
|
| 55 | 55 | */ |
| 56 | 56 | public function __construct(ContainerInterface $config, HttpClient $httpClient) |
| 57 | 57 | { |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | /** |
| 63 | 63 | * Returns configuration container |
| 64 | 64 | * |
| 65 | - * @return ContainerInterface |
|
| 65 | + * @return \Teebot\Configuration\ContainerInterface |
|
| 66 | 66 | */ |
| 67 | 67 | public function getConfig(): ContainerInterface |
| 68 | 68 | { |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | * - Inline Query |
| 107 | 107 | * - Chosen Inline Result |
| 108 | 108 | * |
| 109 | - * @param EntityInterface $entity Update or Error entity object |
|
| 109 | + * @param \Teebot\Api\Entity\EntityInterface $entity Update or Error entity object |
|
| 110 | 110 | * |
| 111 | 111 | * @return array |
| 112 | 112 | */ |
@@ -181,8 +181,8 @@ discard block |
||
| 181 | 181 | * will not be triggered otherwise process will continue until either first false returned or the very |
| 182 | 182 | * last event in the flow. |
| 183 | 183 | * |
| 184 | - * @param EntityInterface $entity Entity for which the corresponding event should be triggered |
|
| 185 | - * @param EntityInterface $parent Entity's parent if any |
|
| 184 | + * @param \Teebot\Api\Entity\EntityInterface $entity Entity for which the corresponding event should be triggered |
|
| 185 | + * @param \Teebot\Api\Entity\EntityInterface $parent Entity's parent if any |
|
| 186 | 186 | * |
| 187 | 187 | * @return bool |
| 188 | 188 | */ |
@@ -224,7 +224,7 @@ discard block |
||
| 224 | 224 | /** |
| 225 | 225 | * Returns event configuration item search by the data from entity |
| 226 | 226 | * |
| 227 | - * @param EntityInterface $entity Entity for which the corresponding event should be triggered |
|
| 227 | + * @param \Teebot\Api\Entity\EntityInterface $entity Entity for which the corresponding event should be triggered |
|
| 228 | 228 | * be treated as a command |
| 229 | 229 | * |
| 230 | 230 | * @return null|EventConfig |
@@ -285,9 +285,9 @@ discard block |
||
| 285 | 285 | * @param MethodInterface $method Method instance |
| 286 | 286 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) |
| 287 | 287 | * to the entities in the result will not be triggered |
| 288 | - * @param EntityInterface $parent Parent entity (if any) |
|
| 288 | + * @param \Teebot\Api\Entity\EntityInterface $parent Parent entity (if any) |
|
| 289 | 289 | * |
| 290 | - * @return Response |
|
| 290 | + * @return \Teebot\Api\Response |
|
| 291 | 291 | */ |
| 292 | 292 | public function call(MethodInterface $method, $silentMode = false, EntityInterface $parent = null) |
| 293 | 293 | { |
@@ -305,7 +305,7 @@ discard block |
||
| 305 | 305 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) |
| 306 | 306 | * to the entities in the result will not be triggered |
| 307 | 307 | * |
| 308 | - * @return Response |
|
| 308 | + * @return \Teebot\Api\Response |
|
| 309 | 309 | */ |
| 310 | 310 | public function getWebhookResponse($data, $silentMode = false) |
| 311 | 311 | { |
@@ -317,11 +317,11 @@ discard block |
||
| 317 | 317 | /** |
| 318 | 318 | * Processes entities from the response object if not in silent mode or error is received. |
| 319 | 319 | * |
| 320 | - * @param Response $response Response object which includes entities |
|
| 320 | + * @param \Teebot\Api\Response $response Response object which includes entities |
|
| 321 | 321 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) |
| 322 | 322 | * to the entities in the result will not be triggered |
| 323 | 323 | * |
| 324 | - * @return Response |
|
| 324 | + * @return \Teebot\Api\Response |
|
| 325 | 325 | */ |
| 326 | 326 | protected function processResponse(Response $response, $silentMode = false) |
| 327 | 327 | { |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | * |
| 53 | 53 | * @param string $rawData Raw JSON string |
| 54 | 54 | * @param null|string $entityClass Entity class that should be instantiated with decoded JSON data |
| 55 | - * @param null|EntityInterface $parent Parent class should be set as parent for newly instantiated entity |
|
| 55 | + * @param null|Entity\EntityInterface $parent Parent class should be set as parent for newly instantiated entity |
|
| 56 | 56 | * |
| 57 | 57 | * @throws DecodingDataException |
| 58 | 58 | */ |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | * @param array $rawItemData Array with raw entity's data |
| 151 | 151 | * @param null|string $entityClass Entity class to instantiate, if not passed - default Entity class will be used. |
| 152 | 152 | * |
| 153 | - * @return EntityInterface |
|
| 153 | + * @return Entity\EntityInterface |
|
| 154 | 154 | * |
| 155 | 155 | * @throws BuildEntityException |
| 156 | 156 | */ |
@@ -52,7 +52,7 @@ discard block |
||
| 52 | 52 | /** |
| 53 | 53 | * Initializes the Client |
| 54 | 54 | * |
| 55 | - * @param AbstractContainer $config |
|
| 55 | + * @param Configuration\AbstractContainer $config |
|
| 56 | 56 | */ |
| 57 | 57 | protected function init(AbstractContainer $config) |
| 58 | 58 | { |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | * @param int $limit Limit of the updates to get |
| 69 | 69 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) to |
| 70 | 70 | * the entities in the result will not be triggered |
| 71 | - * @return Response |
|
| 71 | + * @return Api\Response |
|
| 72 | 72 | */ |
| 73 | 73 | public function getUpdates( |
| 74 | 74 | $offset = Config::DEFAULT_OFFSET, |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | * be passed manually. If not passed - php input will be used to get the data. |
| 128 | 128 | * @param bool $silentMode If set to true then the events, mapped to |
| 129 | 129 | * the entities in the result will not be triggered |
| 130 | - * @return Response |
|
| 130 | + * @return Api\Response |
|
| 131 | 131 | */ |
| 132 | 132 | public function webhook($receivedData = '', $silentMode = false): Response |
| 133 | 133 | { |
@@ -51,8 +51,8 @@ |
||
| 51 | 51 | /** |
| 52 | 52 | * Executes command |
| 53 | 53 | * |
| 54 | - * @param InputInterface $input |
|
| 55 | - * @param OutputInterface $output |
|
| 54 | + * @param \Symfony\Component\Console\Input\InputInterface $input |
|
| 55 | + * @param \Symfony\Component\Console\Output\OutputInterface $output |
|
| 56 | 56 | */ |
| 57 | 57 | protected function execute(InputInterface $input, OutputInterface $output) |
| 58 | 58 | { |
@@ -135,7 +135,7 @@ |
||
| 135 | 135 | } |
| 136 | 136 | |
| 137 | 137 | /** |
| 138 | - * @return ConfigurationInterface |
|
| 138 | + * @return \Symfony\Component\Config\Definition\ConfigurationInterface |
|
| 139 | 139 | */ |
| 140 | 140 | abstract protected function getConfiguration(): ConfigurationInterface; |
| 141 | 141 | |