Static analysis with PHPStan

This commit is contained in:
Lukáš Unger
2018-02-11 21:51:47 +01:00
parent 4c548dbd78
commit eca385ab08
12 changed files with 28 additions and 20 deletions

View File

@@ -53,7 +53,7 @@ class AuthorizationRequest
/**
* The redirect URI used in the request
*
* @var string
* @var string|null
*/
protected $redirectUri;
@@ -159,7 +159,7 @@ class AuthorizationRequest
}
/**
* @return string
* @return string|null
*/
public function getRedirectUri()
{
@@ -167,7 +167,7 @@ class AuthorizationRequest
}
/**
* @param string $redirectUri
* @param string|null $redirectUri
*/
public function setRedirectUri($redirectUri)
{