@@ -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() |
@@ -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 | { |
@@ -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 | */ |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | { |
| 41 | 41 | return is_array($data) && |
| 42 | 42 | array_key_exists('text', $data) && ( |
| 43 | - array_key_exists('url', $data) || |
|
| 43 | + array_key_exists('url', $data) || |
|
| 44 | 44 | array_key_exists('callback_data', $data) || |
| 45 | 45 | array_key_exists('switch_inline_query', $data) |
| 46 | 46 | ); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | /** |
| 67 | 67 | * Reflect |
| 68 | 68 | * |
| 69 | - * @param null $object |
|
| 69 | + * @param Entity $object |
|
| 70 | 70 | * |
| 71 | 71 | * @return array |
| 72 | 72 | */ |
@@ -184,8 +184,8 @@ discard block |
||
| 184 | 184 | /** |
| 185 | 185 | * Get a property from the current Entity |
| 186 | 186 | * |
| 187 | - * @param mixed $property |
|
| 188 | - * @param mixed $default |
|
| 187 | + * @param string $property |
|
| 188 | + * @param string $default |
|
| 189 | 189 | * |
| 190 | 190 | * @return mixed |
| 191 | 191 | */ |