Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2018-04-18 15:22:09 +00:00 committed by StyleCI Bot
parent ff0f5d00f3
commit 1717c7676a

View File

@ -36,6 +36,7 @@ class EventHandler extends \danog\MadelineProto\EventHandler
if ($res == '') { if ($res == '') {
$res = var_export($update, true); $res = var_export($update, true);
} }
try { try {
$this->messages->sendMessage(['peer' => $update, 'message' => $res, 'reply_to_msg_id' => isset($update['message']['id']) ? $update['message']['id'] : null, 'entities' => [['_' => 'messageEntityPre', 'offset' => 0, 'length' => strlen($res), 'language' => 'json']]]); $this->messages->sendMessage(['peer' => $update, 'message' => $res, 'reply_to_msg_id' => isset($update['message']['id']) ? $update['message']['id'] : null, 'entities' => [['_' => 'messageEntityPre', 'offset' => 0, 'length' => strlen($res), 'language' => 'json']]]);
} catch (\danog\MadelineProto\RPCErrorException $e) { } catch (\danog\MadelineProto\RPCErrorException $e) {