Applied fixes from StyleCI

This commit is contained in:
Daniil Gentili 2016-10-13 22:49:54 +00:00 committed by StyleCI Bot
parent 028cadc349
commit 6798e2f4c1
2 changed files with 12 additions and 12 deletions

View File

@ -66,12 +66,12 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB
], ],
], ],
'app_info' => [ 'app_info' => [
'api_id' => 25628, 'api_id' => 25628,
'api_hash' => '1fe17cda7d355166cdaa71f04122873c', 'api_hash' => '1fe17cda7d355166cdaa71f04122873c',
'device_model' => php_uname('s'), 'device_model' => php_uname('s'),
'system_version' => php_uname('r'), 'system_version' => php_uname('r'),
'app_version' => 'Unicorn', 'app_version' => 'Unicorn',
'lang_code' => 'en', 'lang_code' => 'en',
], ],
'tl_schema' => [ 'tl_schema' => [
'layer' => 55, 'layer' => 55,
@ -133,15 +133,15 @@ Slv8kg9qv1m6XHVQY3PnEw+QQtqSIXklHwIDAQAB
$this->settings['authorization']['temp_auth_key'] = $this->create_auth_key($this->settings['authorization']['default_temp_auth_key_expires_in']); $this->settings['authorization']['temp_auth_key'] = $this->create_auth_key($this->settings['authorization']['default_temp_auth_key_expires_in']);
} }
$nearestDc = $this->method_call('invokeWithLayer', [ $nearestDc = $this->method_call('invokeWithLayer', [
'layer' => $this->settings["tl_schema"]["layer"], 'layer' => $this->settings['tl_schema']['layer'],
'query' => $this->tl->serialize_method('initConnection', 'query' => $this->tl->serialize_method('initConnection',
array_merge( array_merge(
$this->settings["app_info"], $this->settings['app_info'],
["query" => $this->tl->serialize_method('help.getNearestDc', [])] ['query' => $this->tl->serialize_method('help.getNearestDc', [])]
) )
) ),
]); ]);
var_dump($nearestDc); var_dump($nearestDc);
} }
public function __destruct() public function __destruct()

View File

@ -43,7 +43,7 @@ class ResponseHandler extends MsgIdHandler
case 'bad_msg_notification': case 'bad_msg_notification':
break; break;
case 'bad_server_salt': case 'bad_server_salt':
$this->settings["authorization"]["temp_auth_key"]["server_salt"] = $response["new_server_salt"]; $this->settings['authorization']['temp_auth_key']['server_salt'] = $response['new_server_salt'];
$this->ack_outgoing_message_id($response['bad_msg_id']); // Acknowledge that the server received my request $this->ack_outgoing_message_id($response['bad_msg_id']); // Acknowledge that the server received my request
$this->outgoing_messages[$response['bad_msg_id']]['response'] = $last_received; $this->outgoing_messages[$response['bad_msg_id']]['response'] = $last_received;
$this->incoming_messages[$last_received]['content'] = $response; $this->incoming_messages[$last_received]['content'] = $response;