Remove native type hints

This commit is contained in:
Andrew Millington 2018-05-21 15:45:09 +01:00
parent 577065c270
commit b182389395
No known key found for this signature in database
GPG Key ID: 077754CA23023F4F
2 changed files with 2 additions and 2 deletions

View File

@ -16,5 +16,5 @@ interface AccessTokenEntityInterface extends TokenInterface
/** /**
* Generate a string representation from the access token * Generate a string representation from the access token
*/ */
public function convertToAccessToken(CryptKey $privateKey): string; public function convertToAccessToken(CryptKey $privateKey);
} }

View File

@ -43,7 +43,7 @@ trait AccessTokenTrait
/** /**
* Generate a string representation from the access token * Generate a string representation from the access token
*/ */
public function convertToAccessToken(CryptKey $privateKey): string public function convertToAccessToken(CryptKey $privateKey)
{ {
return (string) $this->convertToJWT($privateKey); return (string) $this->convertToJWT($privateKey);
} }