removes @var hints

the @var hints make PHP stan fail together with PHPUnit 6.3
This commit is contained in:
filecage
2019-03-16 13:12:34 +01:00
parent 0742d5150c
commit 6f6820f629
4 changed files with 0 additions and 11 deletions

View File

@@ -662,7 +662,6 @@ class AuthCodeGrantTest extends TestCase
$accessTokenRepositoryMock->method('getNewToken')->willReturn(new AccessTokenEntity());
$accessTokenRepositoryMock->method('persistNewAccessToken')->willReturnSelf();
/** @var RefreshTokenRepositoryInterface|MockObject $refreshTokenRepositoryMock */
$refreshTokenRepositoryMock = $this->getMockBuilder(RefreshTokenRepositoryInterface::class)->getMock();
$refreshTokenRepositoryMock->method('persistNewRefreshToken')->willReturnSelf();
$refreshTokenRepositoryMock->method('getNewRefreshToken')->willReturn(null);