@@ -48,8 +48,8 @@ discard block |
||
| 48 | 48 | protected $httpClient; |
| 49 | 49 | |
| 50 | 50 | /** |
| 51 | - * @param ContainerInterface $config |
|
| 52 | - * @param HttpClient $httpClient |
|
| 51 | + * @param \Teebot\Configuration\ContainerInterface $config |
|
| 52 | + * @param \Teebot\Api\HttpClient $httpClient |
|
| 53 | 53 | */ |
| 54 | 54 | public function __construct(ContainerInterface $config, HttpClient $httpClient) |
| 55 | 55 | { |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | /** |
| 61 | 61 | * Returns configuration container |
| 62 | 62 | * |
| 63 | - * @return ContainerInterface |
|
| 63 | + * @return \Teebot\Configuration\ContainerInterface |
|
| 64 | 64 | */ |
| 65 | 65 | public function getConfig(): ContainerInterface |
| 66 | 66 | { |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | * - Inline Query |
| 105 | 105 | * - Chosen Inline Result |
| 106 | 106 | * |
| 107 | - * @param EntityInterface $entity Update or Error entity object |
|
| 107 | + * @param \Teebot\Api\Entity\EntityInterface $entity Update or Error entity object |
|
| 108 | 108 | * |
| 109 | 109 | * @return array |
| 110 | 110 | */ |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * will not be triggered otherwise process will continue until either first false returned or the very |
| 174 | 174 | * last event in the flow. |
| 175 | 175 | * |
| 176 | - * @param ChainItem $chainItem |
|
| 176 | + * @param ValueObject\ChainItem $chainItem |
|
| 177 | 177 | * |
| 178 | 178 | * @return bool |
| 179 | 179 | */ |
@@ -216,7 +216,7 @@ discard block |
||
| 216 | 216 | /** |
| 217 | 217 | * Returns event configuration item search by the data from entity |
| 218 | 218 | * |
| 219 | - * @param EntityInterface $entity Entity for which the corresponding event should be triggered |
|
| 219 | + * @param \Teebot\Api\Entity\EntityInterface $entity Entity for which the corresponding event should be triggered |
|
| 220 | 220 | * be treated as a command |
| 221 | 221 | * |
| 222 | 222 | * @return null|EventConfig |
@@ -277,9 +277,9 @@ discard block |
||
| 277 | 277 | * @param MethodInterface $method Method instance |
| 278 | 278 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) |
| 279 | 279 | * to the entities in the result will not be triggered |
| 280 | - * @param EntityInterface $parent Parent entity (if any) |
|
| 280 | + * @param \Teebot\Api\Entity\EntityInterface $parent Parent entity (if any) |
|
| 281 | 281 | * |
| 282 | - * @return Response |
|
| 282 | + * @return \Teebot\Api\Response |
|
| 283 | 283 | */ |
| 284 | 284 | public function call(MethodInterface $method, $silentMode = false, EntityInterface $parent = null) |
| 285 | 285 | { |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) |
| 298 | 298 | * to the entities in the result will not be triggered |
| 299 | 299 | * |
| 300 | - * @return Response |
|
| 300 | + * @return \Teebot\Api\Response |
|
| 301 | 301 | */ |
| 302 | 302 | public function getWebhookResponse($data, $silentMode = false) |
| 303 | 303 | { |
@@ -309,11 +309,11 @@ discard block |
||
| 309 | 309 | /** |
| 310 | 310 | * Processes entities from the response object if not in silent mode or error is received. |
| 311 | 311 | * |
| 312 | - * @param Response $response Response object which includes entities |
|
| 312 | + * @param \Teebot\Api\Response $response Response object which includes entities |
|
| 313 | 313 | * @param bool $silentMode If set to true then the events, mapped (in config or by default) |
| 314 | 314 | * to the entities in the result will not be triggered |
| 315 | 315 | * |
| 316 | - * @return Response |
|
| 316 | + * @return \Teebot\Api\Response |
|
| 317 | 317 | */ |
| 318 | 318 | protected function processResponse(Response $response, $silentMode = false) |
| 319 | 319 | { |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | } |
| 159 | 159 | |
| 160 | 160 | /** |
| 161 | - * @return array |
|
| 161 | + * @return MessageEntityArray |
|
| 162 | 162 | */ |
| 163 | 163 | public function getEntities() |
| 164 | 164 | { |
@@ -347,7 +347,7 @@ discard block |
||
| 347 | 347 | } |
| 348 | 348 | |
| 349 | 349 | /** |
| 350 | - * @return null|Contact|Document|Location|Sticker|Video|Voice |
|
| 350 | + * @return null|EntityInterface |
|
| 351 | 351 | */ |
| 352 | 352 | public function getMessageTypeEntity() |
| 353 | 353 | { |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | * @author Stanislav Drozdov <[email protected]> |
| 9 | 9 | */ |
| 10 | 10 | |
| 11 | -declare(strict_types=1); |
|
| 11 | +declare(strict_types = 1); |
|
| 12 | 12 | |
| 13 | 13 | namespace Teebot\Api; |
| 14 | 14 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | * |
| 78 | 78 | * @return array |
| 79 | 79 | */ |
| 80 | - protected function decodeData(string $rawData): ?array |
|
| 80 | + protected function decodeData(string $rawData): ? array |
|
| 81 | 81 | { |
| 82 | 82 | if (!is_string($rawData) || !strlen($rawData)) { |
| 83 | 83 | return []; |
@@ -135,7 +135,7 @@ discard block |
||
| 135 | 135 | $entity = $this->buildEntity($rawItemData, $entityClass); |
| 136 | 136 | |
| 137 | 137 | if ($entity && $entity instanceof Update) { |
| 138 | - $this->lastUpdate = (int)$entity->getUpdateId(); |
|
| 138 | + $this->lastUpdate = (int) $entity->getUpdateId(); |
|
| 139 | 139 | } |
| 140 | 140 | |
| 141 | 141 | $entities[] = $entity; |
@@ -160,7 +160,7 @@ discard block |
||
| 160 | 160 | $entity = null; |
| 161 | 161 | |
| 162 | 162 | if (!class_exists($entityClass)) { |
| 163 | - throw new BuildEntityException('Entity "' . $entityClass . '" does not exists or not supported yet!'); |
|
| 163 | + throw new BuildEntityException('Entity "'.$entityClass.'" does not exists or not supported yet!'); |
|
| 164 | 164 | } |
| 165 | 165 | |
| 166 | 166 | /** @var EntityInterface $entity */ |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | * @author Stanislav Drozdov <[email protected]> |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -declare(strict_types=1); |
|
| 12 | +declare(strict_types = 1); |
|
| 13 | 13 | |
| 14 | 14 | namespace Teebot\Api; |
| 15 | 15 | |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | string $receivedData, |
| 88 | 88 | ?string $entityClass, |
| 89 | 89 | EntityInterface $parent = null |
| 90 | - ): Response { |
|
| 90 | + ) : Response { |
|
| 91 | 91 | return new Response($receivedData, $entityClass, $parent); |
| 92 | 92 | } |
| 93 | 93 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Teebot\Configuration; |
| 6 | 6 | |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | $replace = []; |
| 69 | 69 | |
| 70 | 70 | foreach ($tokens as $token) { |
| 71 | - $envKey = static::ENV_PREFIX . strtoupper(substr($token, 1, strlen($token) - 2)); |
|
| 71 | + $envKey = static::ENV_PREFIX.strtoupper(substr($token, 1, strlen($token) - 2)); |
|
| 72 | 72 | $envValue = getenv($envKey); |
| 73 | 73 | |
| 74 | 74 | if ($envValue) { |