| @@ -55,7 +55,7 @@ | ||
| 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 | }); | 
| @@ -74,7 +74,7 @@ discard block | ||
| 74 | 74 | return ''; | 
| 75 | 75 | } | 
| 76 | 76 | |
| 77 | - return (string)$response->getBody(); | |
| 77 | + return (string) $response->getBody(); | |
| 78 | 78 | } | 
| 79 | 79 | |
| 80 | 80 | /** | 
| @@ -92,7 +92,7 @@ discard block | ||
| 92 | 92 | } | 
| 93 | 93 | |
| 94 | 94 | //http://openweathermap.org/weather-conditions | 
| 95 | - $conditions = [ | |
| 95 | + $conditions = [ | |
| 96 | 96 | 'clear' => ' ☀️', | 
| 97 | 97 | 'clouds' => ' ☁️', | 
| 98 | 98 | 'rain' => ' ☔', | 
| @@ -80,7 +80,7 @@ discard block | ||
| 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 | ||
| 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()), | 
| @@ -84,7 +84,7 @@ | ||
| 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 | ) | 
| @@ -328,7 +328,7 @@ | ||
| 328 | 328 |          if ($response->isOk()) { | 
| 329 | 329 | //Process all updates | 
| 330 | 330 | /** @var Update $result */ | 
| 331 | -            foreach ((array)$response->getResult() as $result) { | |
| 331 | +            foreach ((array) $response->getResult() as $result) { | |
| 332 | 332 | $this->processUpdate($result); | 
| 333 | 333 | } | 
| 334 | 334 | } | 
| @@ -262,7 +262,7 @@ | ||
| 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 | |
| @@ -278,8 +278,8 @@ | ||
| 278 | 278 | public function stripMarkDown($string) | 
| 279 | 279 |      { | 
| 280 | 280 | return str_replace( | 
| 281 | - ['[', '`', '*', '_',], | |
| 282 | - ['\[', '\`', '\*', '\_',], | |
| 281 | + ['[', '`', '*', '_', ], | |
| 282 | + ['\[', '\`', '\*', '\_', ], | |
| 283 | 283 | $string | 
| 284 | 284 | ); | 
| 285 | 285 | } | 
| @@ -90,7 +90,7 @@ | ||
| 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. | 
| @@ -36,7 +36,7 @@ discard block | ||
| 36 | 36 | unset($data['raw_data']); | 
| 37 | 37 | $data['raw_data'] = $data; | 
| 38 | 38 | |
| 39 | - $is_ok = isset($data['ok']) ? (bool)$data['ok'] : false; | |
| 39 | + $is_ok = isset($data['ok']) ? (bool) $data['ok'] : false; | |
| 40 | 40 | $result = isset($data['result']) ? $data['result'] : null; | 
| 41 | 41 | |
| 42 | 42 |          if ($is_ok && is_array($result)) { | 
| @@ -71,7 +71,7 @@ discard block | ||
| 71 | 71 | */ | 
| 72 | 72 | public function isOk() | 
| 73 | 73 |      { | 
| 74 | - return (bool)$this->getOk(); | |
| 74 | + return (bool) $this->getOk(); | |
| 75 | 75 | } | 
| 76 | 76 | |
| 77 | 77 | /** | 
| @@ -100,11 +100,11 @@ discard block | ||
| 100 | 100 | |
| 101 | 101 | $result_object_types = [ | 
| 102 | 102 | 'total_count' => 'UserProfilePhotos', //Response from getUserProfilePhotos | 
| 103 | - 'file_id' => 'File', //Response from getFile | |
| 104 | - 'title' => 'Chat', //Response from getChat | |
| 105 | - 'username' => 'User', //Response from getMe | |
| 106 | - 'user' => 'ChatMember', //Response from getChatMember | |
| 107 | - 'url' => 'WebhookInfo', //Response from getWebhookInfo | |
| 103 | + 'file_id' => 'File', //Response from getFile | |
| 104 | + 'title' => 'Chat', //Response from getChat | |
| 105 | + 'username' => 'User', //Response from getMe | |
| 106 | + 'user' => 'ChatMember', //Response from getChatMember | |
| 107 | + 'url' => 'WebhookInfo', //Response from getWebhookInfo | |
| 108 | 108 | ]; | 
| 109 | 109 |          foreach ($result_object_types as $type => $object_class) { | 
| 110 | 110 |              if (isset($result[$type])) { |