mirror of
https://github.com/elyby/oauth2-server.git
synced 2025-01-03 10:41:51 +05:30
PSR style if/else block
This commit is contained in:
parent
8fdcb02740
commit
0a5455642f
@ -27,19 +27,20 @@ class Exception extends \Exception {
|
|||||||
|
|
||||||
$code = isset($result['code']) ? $result['code'] : 0;
|
$code = isset($result['code']) ? $result['code'] : 0;
|
||||||
|
|
||||||
if (isset($result['error']))
|
if (isset($result['error'])) {
|
||||||
{
|
|
||||||
// OAuth 2.0 Draft 10 style
|
// OAuth 2.0 Draft 10 style
|
||||||
$message = $result['error'];
|
$message = $result['error'];
|
||||||
}
|
|
||||||
elseif (isset($result['message']))
|
} elseif (isset($result['message'])) {
|
||||||
{
|
|
||||||
// cURL style
|
// cURL style
|
||||||
$message = $result['message'];
|
$message = $result['message'];
|
||||||
}
|
|
||||||
else
|
} else {
|
||||||
{
|
|
||||||
$message = 'Unknown Error.';
|
$message = 'Unknown Error.';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
parent::__construct($message, $code);
|
parent::__construct($message, $code);
|
||||||
@ -54,15 +55,16 @@ class Exception extends \Exception {
|
|||||||
*/
|
*/
|
||||||
public function getType()
|
public function getType()
|
||||||
{
|
{
|
||||||
if (isset($this->result['error']))
|
if (isset($this->result['error'])) {
|
||||||
{
|
|
||||||
$message = $this->result['error'];
|
$message = $this->result['error'];
|
||||||
if (is_string($message))
|
|
||||||
{
|
if (is_string($message)) {
|
||||||
// OAuth 2.0 Draft 10 style
|
// OAuth 2.0 Draft 10 style
|
||||||
return $message;
|
return $message;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 'Exception';
|
return 'Exception';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -75,10 +77,11 @@ class Exception extends \Exception {
|
|||||||
public function __toString()
|
public function __toString()
|
||||||
{
|
{
|
||||||
$str = $this->getType() . ': ';
|
$str = $this->getType() . ': ';
|
||||||
if ($this->code != 0)
|
|
||||||
{
|
if ($this->code != 0) {
|
||||||
$str .= $this->code . ': ';
|
$str .= $this->code . ': ';
|
||||||
}
|
}
|
||||||
|
|
||||||
return $str . $this->message;
|
return $str . $this->message;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user