mirror of
https://github.com/danog/laravel-madeline-proto.git
synced 2024-11-26 11:54:40 +01:00
Code cleaning
This commit is contained in:
parent
3f8940760b
commit
2a303fe21d
@ -46,11 +46,12 @@ class MadelineProto
|
||||
{
|
||||
$response = new TelegramObject($this->client->completePhoneLogin($code));
|
||||
|
||||
switch ($response->return_type) {
|
||||
case Account::PASSWORD:
|
||||
throw new NeedTwoFactorAuthException($response);
|
||||
case Account::NEED_SIGN_UP:
|
||||
throw new SignUpNeededException();
|
||||
if ($response->return_type == Account::PASSWORD) {
|
||||
throw new NeedTwoFactorAuthException($response);
|
||||
}
|
||||
|
||||
if ($response->return_type == Account::NEED_SIGN_UP) {
|
||||
throw new SignUpNeededException();
|
||||
}
|
||||
|
||||
return $response;
|
||||
@ -145,7 +146,7 @@ class MadelineProto
|
||||
*
|
||||
* @return ClientMessages
|
||||
*/
|
||||
public function messages()
|
||||
public function messages(): ClientMessages
|
||||
{
|
||||
return new ClientMessages($this->client->messages);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user