Removed line break in error messages

This commit is contained in:
Alex Bilbie
2014-08-04 09:11:44 +01:00
parent c29340ae27
commit 7b9899c46b
3 changed files with 3 additions and 6 deletions

View File

@@ -31,8 +31,7 @@ class ServerErrorException extends OAuthException
*/
public function __construct($parameter = null)
{
$parameter = is_null($parameter) ? 'The authorization server encountered an unexpected condition which prevented
it from fulfilling the request.' : $parameter;
$parameter = is_null($parameter) ? 'The authorization server encountered an unexpected condition which prevented it from fulfilling the request.' : $parameter;
parent::__construct($parameter);
}
}