Apply fixes from StyleCI
This commit is contained in:
parent
ed099be65c
commit
f254284630
@ -490,7 +490,9 @@ trait UpdateHandler
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'phoneCallDiscarded':
|
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']);
|
($update['phone_call'] = $this->calls[$update['phone_call']['id']])->discard(['_' => 'phoneCallDiscardReasonHangup'], [], $update['phone_call']['need_debug']);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -70,7 +70,6 @@ trait AuthKeyHandler
|
|||||||
});
|
});
|
||||||
if ($this->call_status($params['id']) !== \danog\MadelineProto\VoIP::CALL_STATE_INCOMING) {
|
if ($this->call_status($params['id']) !== \danog\MadelineProto\VoIP::CALL_STATE_INCOMING) {
|
||||||
throw new \danog\MadelineProto\Exception('I cannot accept call '.$params['id']);
|
throw new \danog\MadelineProto\Exception('I cannot accept call '.$params['id']);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
\danog\MadelineProto\Logger::log(['Accepting call from '.$this->calls[$params['id']]->getOtherID().'...'], \danog\MadelineProto\Logger::VERBOSE);
|
\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) {
|
if ($this->call_status($params['id']) !== \danog\MadelineProto\VoIP::CALL_STATE_REQUESTED) {
|
||||||
\danog\MadelineProto\Logger::log(['Could not find and confirm call '.$params['id']]);
|
\danog\MadelineProto\Logger::log(['Could not find and confirm call '.$params['id']]);
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
\danog\MadelineProto\Logger::log(['Confirming call from '.$this->calls[$params['id']]->getOtherID().'...'], \danog\MadelineProto\Logger::VERBOSE);
|
\danog\MadelineProto\Logger::log(['Confirming call from '.$this->calls[$params['id']]->getOtherID().'...'], \danog\MadelineProto\Logger::VERBOSE);
|
||||||
|
Loading…
Reference in New Issue
Block a user