We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda3305 commit cf194c6Copy full SHA for cf194c6
Authentication/AuthenticationTrustResolverInterface.php
@@ -28,15 +28,11 @@ public function isAuthenticated(TokenInterface $token = null): bool;
28
/**
29
* Resolves whether the passed token implementation is authenticated
30
* using remember-me capabilities.
31
- *
32
- * @return bool
33
*/
34
- public function isRememberMe(TokenInterface $token = null);
+ public function isRememberMe(TokenInterface $token = null): bool;
35
36
37
* Resolves whether the passed token implementation is fully authenticated.
38
39
40
41
- public function isFullFledged(TokenInterface $token = null);
+ public function isFullFledged(TokenInterface $token = null): bool;
42
}
0 commit comments