From 0bb968f413ed89e8b92ca6deac597d67e5d84b27 Mon Sep 17 00:00:00 2001 From: Lee Date: Wed, 4 May 2016 15:13:48 +0800 Subject: [PATCH] Fixed typo in exception string --- src/Grant/ImplicitGrant.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Grant/ImplicitGrant.php b/src/Grant/ImplicitGrant.php index f3a74ced..d07c55a4 100644 --- a/src/Grant/ImplicitGrant.php +++ b/src/Grant/ImplicitGrant.php @@ -41,7 +41,7 @@ class ImplicitGrant extends AbstractAuthorizeGrant */ 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) { - throw new \LogicException('The Implicit Grant does nto return refresh tokens'); + throw new \LogicException('The Implicit Grant does not return refresh tokens'); } /**