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.
AuthenticationTrustResolverInterface::isAuthenticated()
1 parent 4780f05 commit 32952caCopy full SHA for 32952ca
src/Symfony/Component/Security/Core/Authentication/AuthenticationTrustResolverInterface.php
@@ -17,11 +17,14 @@
17
* Interface for resolving the authentication status of a given token.
18
*
19
* @author Johannes M. Schmitt <[email protected]>
20
- *
21
- * @method bool isAuthenticated(TokenInterface $token = null)
22
*/
23
interface AuthenticationTrustResolverInterface
24
{
+ /**
+ * Resolves whether the passed token implementation is authenticated.
25
+ */
26
+ public function isAuthenticated(TokenInterface $token = null): bool;
27
+
28
/**
29
* Resolves whether the passed token implementation is authenticated
30
* using remember-me capabilities.
0 commit comments