From 1485d3879296a997d47f54469b0dd518b9230b06 Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Thu, 23 Feb 2017 00:47:05 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/danog/MadelineProto/TL/TL.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/danog/MadelineProto/TL/TL.php b/src/danog/MadelineProto/TL/TL.php index ed804483..f367e8b4 100644 --- a/src/danog/MadelineProto/TL/TL.php +++ b/src/danog/MadelineProto/TL/TL.php @@ -547,12 +547,13 @@ trait TL throw new Exception("Can't convert ".$data['_'].' to a bot API object'); } } + public $botapi_params = [ 'disable_web_page_preview' => 'no_webpage', - 'disable_notification' => 'silent', - 'reply_to_message_id' => 'reply_to_msg_id', - 'chat_id' => 'peer', - 'text' => 'message', + 'disable_notification' => 'silent', + 'reply_to_message_id' => 'reply_to_msg_id', + 'chat_id' => 'peer', + 'text' => 'message', ]; public function botAPI_to_MTProto($arguments)