File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ public function testAuthorizesBeforeSendingRequest(): void
7272 static ::assertTrue ($ client ->isAuthorized ());
7373 }
7474
75- public function testIsNotAuthorizedIfTokenStorageContainsNoAccessToken ()
75+ public function testIsNotAuthorizedIfTokenStorageContainsNoAccessToken (): void
7676 {
7777 $ client = new Client (
7878 $ this ->keycloak ,
@@ -83,7 +83,7 @@ public function testIsNotAuthorizedIfTokenStorageContainsNoAccessToken()
8383 static ::assertFalse ($ client ->isAuthorized ());
8484 }
8585
86- public function testIsNotAuthorizedIfTokenStorageContainsExpiredAccessToken ()
86+ public function testIsNotAuthorizedIfTokenStorageContainsExpiredAccessToken (): void
8787 {
8888 $ accessToken = $ this ->generateToken ((new DateTimeImmutable ())->modify ('-1 hour ' ));
8989
@@ -99,7 +99,7 @@ public function testIsNotAuthorizedIfTokenStorageContainsExpiredAccessToken()
9999 static ::assertFalse ($ client ->isAuthorized ());
100100 }
101101
102- public function testIsAuthorizedIfTokenStorageContainsUnexpiredAccessToken ()
102+ public function testIsAuthorizedIfTokenStorageContainsUnexpiredAccessToken (): void
103103 {
104104 $ accessToken = $ this ->generateToken ((new DateTimeImmutable ())->modify ('+1 hour ' ));
105105
You can’t perform that action at this time.
0 commit comments