Code tidy

This commit is contained in:
Alex Bilbie 2016-01-14 23:47:41 +00:00
parent b57b497cb7
commit 5e6f0fc6a3

View File

@ -172,7 +172,14 @@ class OAuthServerException extends \Exception
*/
public static function serverError($hint)
{
return new static('\'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.', 'server_errror', 500, $hint);
return new static(
'The authorization server encountered an unexpected condition which prevented it from fulfilling'
. 'the request.',
'server_error',
500,
$hint
);
}
}
/**