Completed
Push — develop ( 6ce3f1...645322 )
by Armando
03:53
created
src/Telegram.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -307,7 +307,7 @@
 block discarded – undo
307 307
 
308 308
         if ($response->isOk()) {
309 309
             //Process all updates
310
-            foreach ((array)$response->getResult() as $result) {
310
+            foreach ((array) $response->getResult() as $result) {
311 311
                 $this->processUpdate($result);
312 312
             }
313 313
         }
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -729,7 +729,7 @@
 block discarded – undo
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()
Please login to merge, or discard this patch.
src/ConversationDB.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
         }
85 85
 
86 86
         try {
87
-            $sth    = self::$pdo->prepare('INSERT INTO `' . TB_CONVERSATION . '`
87
+            $sth = self::$pdo->prepare('INSERT INTO `' . TB_CONVERSATION . '`
88 88
                 (
89 89
                 `status`, `user_id`, `chat_id`, `command`, `notes`, `created_at`, `updated_at`
90 90
                 )
Please login to merge, or discard this patch.
src/Commands/UserCommands/WeatherCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
             throw new TelegramException($e->getMessage());
73 73
         }
74 74
 
75
-        return (string)$response->getBody();
75
+        return (string) $response->getBody();
76 76
     }
77 77
 
78 78
     /**
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
             }
91 91
 
92 92
             //http://openweathermap.org/weather-conditions
93
-            $conditions     = [
93
+            $conditions = [
94 94
                 'clear'        => ' ☀️',
95 95
                 'clouds'       => ' ☁️',
96 96
                 'rain'         => ' ☔',
Please login to merge, or discard this patch.
src/Commands/AdminCommands/SendtochannelCommand.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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()
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
         $this->conversation = new Conversation($user_id, $chat_id, $this->getName());
81 81
         $notes              = &$this->conversation->notes;
82 82
 
83
-        $channels = (array)$this->getConfig('your_channel');
83
+        $channels = (array) $this->getConfig('your_channel');
84 84
         if (isset($notes['state'])) {
85 85
             $state = $notes['state'];
86 86
         } else {
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
         ];
345 345
 
346 346
         if ($text !== '') {
347
-            $channels      = (array)$this->getConfig('your_channel');
347
+            $channels      = (array) $this->getConfig('your_channel');
348 348
             $first_channel = $channels[0];
349 349
             $data['text']  = $this->publish(
350 350
                 new Message($message->reflect(), $this->telegram->getBotName()),
Please login to merge, or discard this patch.
src/DB.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,7 +262,7 @@
 block discarded – undo
262 262
         }
263 263
 
264 264
         //Convert each Entity item into an object based on its JSON reflection
265
-        $json_entities = array_map(function ($entity) {
265
+        $json_entities = array_map(function($entity) {
266 266
             return json_decode($entity, true);
267 267
         }, $entities);
268 268
 
Please login to merge, or discard this patch.
src/Commands/UserCommands/HelpCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
 
56 56
         //Only get enabled Admin and User commands
57 57
         /** @var Command[] $command_objs */
58
-        $command_objs = array_filter($this->telegram->getCommandsList(), function ($command_obj) {
58
+        $command_objs = array_filter($this->telegram->getCommandsList(), function($command_obj) {
59 59
             /** @var Command $command_obj */
60 60
             return !$command_obj->isSystemCommand() && $command_obj->isEnabled();
61 61
         });
Please login to merge, or discard this patch.
src/Entities/Entity.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -278,8 +278,8 @@
 block discarded – undo
278 278
     public function stripMarkDown($string)
279 279
     {
280 280
         return str_replace(
281
-            ['[', '`', '*', '_',],
282
-            ['\[', '\`', '\*', '\_',],
281
+            ['[', '`', '*', '_', ],
282
+            ['\[', '\`', '\*', '\_', ],
283 283
             $string
284 284
         );
285 285
     }
Please login to merge, or discard this patch.
src/Entities/Keyboard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
 
91 91
         $data = reset($args);
92 92
 
93
-        if ($from_data = array_key_exists($keyboard_type, (array)$data)) {
93
+        if ($from_data = array_key_exists($keyboard_type, (array) $data)) {
94 94
             $args = $data[$keyboard_type];
95 95
 
96 96
             // Make sure we're working with a proper row.
Please login to merge, or discard this patch.
src/Request.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -238,7 +238,7 @@
 block discarded – undo
238 238
      *
239 239
      * @param \Longman\TelegramBot\Entities\File $file
240 240
      *
241
-     * @return boolean
241
+     * @return boolean|string
242 242
      * @throws \Longman\TelegramBot\Exception\TelegramException
243 243
      */
244 244
     public static function downloadFile(File $file)
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
                 'first_name' => 'botname',
157 157
                 'username'   => 'namebot',
158 158
             ];
159
-            $data['chat']       = ['id' => $data['chat_id']];
159
+            $data['chat'] = ['id' => $data['chat_id']];
160 160
 
161 161
             $fake_response['result'] = $data;
162 162
         }
@@ -217,14 +217,14 @@  discard block
 block discarded – undo
217 217
                 '/bot' . self::$telegram->getApiKey() . '/' . $action,
218 218
                 $request_params
219 219
             );
220
-            $result   = (string)$response->getBody();
220
+            $result = (string) $response->getBody();
221 221
 
222 222
             //Logging getUpdates Update
223 223
             if ($action === 'getUpdates') {
224 224
                 TelegramLog::update($result);
225 225
             }
226 226
         } catch (RequestException $e) {
227
-            $result = (string)$e->getResponse()->getBody();
227
+            $result = (string) $e->getResponse()->getBody();
228 228
         } finally {
229 229
             //Logging verbose debug output
230 230
             TelegramLog::endDebugLogTempStream("Verbose HTTP Request output:\n%s\n");
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
 
264 264
             return filesize($file_path) > 0;
265 265
         } catch (RequestException $e) {
266
-            return (string)$e->getResponse()->getBody();
266
+            return (string) $e->getResponse()->getBody();
267 267
         } finally {
268 268
             //Logging verbose debug output
269 269
             TelegramLog::endDebugLogTempStream("Verbose HTTP File Download Request output:\n%s\n");
Please login to merge, or discard this patch.