@@ -34,7 +34,7 @@ |
||
34 | 34 | * ServerResponse constructor. |
35 | 35 | * |
36 | 36 | * @param array $data |
37 | - * @param $bot_name |
|
37 | + * @param string|null $bot_name |
|
38 | 38 | */ |
39 | 39 | public function __construct(array $data, $bot_name) |
40 | 40 | { |
@@ -729,7 +729,7 @@ |
||
729 | 729 | /** |
730 | 730 | * Unset Webhook for bot |
731 | 731 | * |
732 | - * @return mixed |
|
732 | + * @return ServerResponse |
|
733 | 733 | * @throws \Longman\TelegramBot\Exception\TelegramException |
734 | 734 | */ |
735 | 735 | public function unsetWebHook() |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | /** |
56 | 56 | * Command execute method |
57 | 57 | * |
58 | - * @return \Longman\TelegramBot\Entities\ServerResponse|mixed |
|
58 | + * @return \Longman\TelegramBot\Entities\ServerResponse |
|
59 | 59 | * @throws \Longman\TelegramBot\Exception\TelegramException |
60 | 60 | */ |
61 | 61 | public function execute() |
@@ -329,7 +329,7 @@ discard block |
||
329 | 329 | * |
330 | 330 | * @todo Why send just to the first found channel? |
331 | 331 | * |
332 | - * @return mixed |
|
332 | + * @return \Longman\TelegramBot\Entities\ServerResponse |
|
333 | 333 | * @throws \Longman\TelegramBot\Exception\TelegramException |
334 | 334 | */ |
335 | 335 | public function executeNoDb() |
@@ -251,7 +251,7 @@ |
||
251 | 251 | * @todo Find a better way, as json_* functions are very heavy |
252 | 252 | * |
253 | 253 | * @param array|null $entities |
254 | - * @param mixed $default |
|
254 | + * @param string|null $default |
|
255 | 255 | * |
256 | 256 | * @return mixed |
257 | 257 | */ |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | /** |
66 | 66 | * Reflect |
67 | 67 | * |
68 | - * @param null $object |
|
68 | + * @param Entity $object |
|
69 | 69 | * |
70 | 70 | * @return array |
71 | 71 | */ |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | /** |
184 | 184 | * Get a property from the current Entity |
185 | 185 | * |
186 | - * @param mixed $property |
|
186 | + * @param string $property |
|
187 | 187 | * @param mixed $default |
188 | 188 | * |
189 | 189 | * @return mixed |