Fix alignment

This commit is contained in:
Andrew Millington 2018-05-17 13:13:30 +01:00
parent 8a25e0a01b
commit 19d782d223

View File

@ -295,7 +295,7 @@ class OAuthServerException extends \Exception
// matching the authentication scheme used by the client.
// @codeCoverageIgnoreStart
if ($this->errorType === 'invalid_client' && array_key_exists('HTTP_AUTHORIZATION', $_SERVER) !== false) {
$headers['WWW-Authenticate'] = $authScheme . ' realm="OAuth"';
$headers['WWW-Authenticate'] = $authScheme . ' realm="OAuth"';
}
// @codeCoverageIgnoreEnd
return $headers;