Fixed typo in exception string

This commit is contained in:
Lee 2016-05-04 15:13:48 +08:00
parent 6856699cab
commit 0bb968f413

View File

@ -41,7 +41,7 @@ class ImplicitGrant extends AbstractAuthorizeGrant
*/ */
public function setRefreshTokenTTL(\DateInterval $refreshTokenTTL) public function setRefreshTokenTTL(\DateInterval $refreshTokenTTL)
{ {
throw new \LogicException('The Implicit Grant does nto return refresh tokens'); throw new \LogicException('The Implicit Grant does not return refresh tokens');
} }
/** /**
@ -51,7 +51,7 @@ class ImplicitGrant extends AbstractAuthorizeGrant
*/ */
public function setRefreshTokenRepository(RefreshTokenRepositoryInterface $refreshTokenRepository) public function setRefreshTokenRepository(RefreshTokenRepositoryInterface $refreshTokenRepository)
{ {
throw new \LogicException('The Implicit Grant does nto return refresh tokens'); throw new \LogicException('The Implicit Grant does not return refresh tokens');
} }
/** /**