PHPStan level 7

This commit is contained in:
Lukáš Unger
2018-02-18 21:17:32 +01:00
parent 456c6cfdd2
commit 143afc9561
8 changed files with 54 additions and 10 deletions

View File

@@ -12,12 +12,12 @@ namespace League\OAuth2\Server\Entities;
interface AuthCodeEntityInterface extends TokenInterface
{
/**
* @return string
* @return string|null
*/
public function getRedirectUri();
/**
* @param string $uri
* @param string|null $uri
*/
public function setRedirectUri($uri);
}