mirror of
				https://github.com/elyby/oauth2-server.git
				synced 2025-05-31 14:12:07 +05:30 
			
		
		
		
	Merge pull request #600 from zerkms/ISSUE-598_REDUNDANT_IS_EXPIRED
Removed isExpired() from interfaces and traits
This commit is contained in:
		| @@ -52,11 +52,4 @@ interface RefreshTokenEntityInterface | ||||
|      * @return \League\OAuth2\Server\Entities\AccessTokenEntityInterface | ||||
|      */ | ||||
|     public function getAccessToken(); | ||||
|  | ||||
|     /** | ||||
|      * Has the token expired? | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public function isExpired(); | ||||
| } | ||||
|   | ||||
| @@ -80,11 +80,4 @@ interface TokenInterface | ||||
|      * @return ScopeEntityInterface[] | ||||
|      */ | ||||
|     public function getScopes(); | ||||
|  | ||||
|     /** | ||||
|      * Has the token expired? | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public function isExpired(); | ||||
| } | ||||
|   | ||||
| @@ -59,14 +59,4 @@ trait RefreshTokenTrait | ||||
|     { | ||||
|         $this->expiryDateTime = $dateTime; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Has the token expired? | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public function isExpired() | ||||
|     { | ||||
|         return (new DateTime()) > $this->getExpiryDateTime(); | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -114,14 +114,4 @@ trait TokenEntityTrait | ||||
|     { | ||||
|         $this->client = $client; | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * Has the token expired? | ||||
|      * | ||||
|      * @return bool | ||||
|      */ | ||||
|     public function isExpired() | ||||
|     { | ||||
|         return (new DateTime()) > $this->getExpiryDateTime(); | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -275,7 +275,6 @@ class AbstractGrantTest extends \PHPUnit_Framework_TestCase | ||||
|         /** @var RefreshTokenEntityInterface $refreshToken */ | ||||
|         $refreshToken = $issueRefreshTokenMethod->invoke($grantMock, $accessToken); | ||||
|         $this->assertTrue($refreshToken instanceof RefreshTokenEntityInterface); | ||||
|         $this->assertFalse($refreshToken->isExpired()); | ||||
|         $this->assertEquals($accessToken, $refreshToken->getAccessToken()); | ||||
|     } | ||||
|  | ||||
| @@ -301,7 +300,6 @@ class AbstractGrantTest extends \PHPUnit_Framework_TestCase | ||||
|             [new ScopeEntity()] | ||||
|         ); | ||||
|         $this->assertTrue($accessToken instanceof AccessTokenEntityInterface); | ||||
|         $this->assertFalse($accessToken->isExpired()); | ||||
|     } | ||||
|  | ||||
|     public function testIssueAuthCode() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user