Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2017-07-20 17:32:07 +00:00 committed by StyleCI Bot
parent ed099be65c
commit f254284630
2 changed files with 4 additions and 2 deletions

View File

@ -490,7 +490,9 @@ trait UpdateHandler
break;
case 'phoneCallDiscarded':
if (!isset($this->calls[$update['phone_call']['id']])) return;
if (!isset($this->calls[$update['phone_call']['id']])) {
return;
}
($update['phone_call'] = $this->calls[$update['phone_call']['id']])->discard(['_' => 'phoneCallDiscardReasonHangup'], [], $update['phone_call']['need_debug']);
break;
}

View File

@ -70,7 +70,6 @@ trait AuthKeyHandler
});
if ($this->call_status($params['id']) !== \danog\MadelineProto\VoIP::CALL_STATE_INCOMING) {
throw new \danog\MadelineProto\Exception('I cannot accept call '.$params['id']);
return false;
}
\danog\MadelineProto\Logger::log(['Accepting call from '.$this->calls[$params['id']]->getOtherID().'...'], \danog\MadelineProto\Logger::VERBOSE);
@ -101,6 +100,7 @@ trait AuthKeyHandler
});
if ($this->call_status($params['id']) !== \danog\MadelineProto\VoIP::CALL_STATE_REQUESTED) {
\danog\MadelineProto\Logger::log(['Could not find and confirm call '.$params['id']]);
return false;
}
\danog\MadelineProto\Logger::log(['Confirming call from '.$this->calls[$params['id']]->getOtherID().'...'], \danog\MadelineProto\Logger::VERBOSE);