Merge branch 'V5-WIP' of github.com:thephpleague/oauth2-server into V5-WIP

This commit is contained in:
Alex Bilbie
2016-04-09 15:44:42 +01:00
3 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ use OAuth2ServerExamples\Entities\RefreshTokenEntity;
class RefreshTokenRepository implements RefreshTokenRepositoryInterface
{
/**
* @inheritdoc
* {@inheritdoc}
*/
public function persistNewRefreshToken(RefreshTokenEntityInterface $refreshTokenEntityInterface)
{
@@ -17,7 +17,7 @@ class RefreshTokenRepository implements RefreshTokenRepositoryInterface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function revokeRefreshToken($tokenId)
{
@@ -25,7 +25,7 @@ class RefreshTokenRepository implements RefreshTokenRepositoryInterface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function isRefreshTokenRevoked($tokenId)
{
@@ -33,7 +33,7 @@ class RefreshTokenRepository implements RefreshTokenRepositoryInterface
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getNewRefreshToken()
{