Add typehints to OAuthServerException calls

This commit is contained in:
Ian Littman 2019-05-11 13:35:24 -05:00
parent d7defafd83
commit 42df2d9c47
No known key found for this signature in database
GPG Key ID: 55488EB78A0AFBE3

View File

@ -95,7 +95,7 @@ class OAuthServerException extends \Exception
*
* @param ServerRequestInterface $serverRequest
*/
public function setServerRequest($serverRequest)
public function setServerRequest(ServerRequestInterface $serverRequest)
{
$this->serverRequest = $serverRequest;
}
@ -137,7 +137,7 @@ class OAuthServerException extends \Exception
*
* @return static
*/
public static function invalidClient($serverRequest)
public static function invalidClient(ServerRequestInterface $serverRequest)
{
$exception = new static('Client authentication failed', 4, 'invalid_client', 401);