Skip to content

Commit cf194c6

Browse files
Add missing return types
1 parent eda3305 commit cf194c6

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

Authentication/AuthenticationTrustResolverInterface.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,11 @@ public function isAuthenticated(TokenInterface $token = null): bool;
2828
/**
2929
* Resolves whether the passed token implementation is authenticated
3030
* using remember-me capabilities.
31-
*
32-
* @return bool
3331
*/
34-
public function isRememberMe(TokenInterface $token = null);
32+
public function isRememberMe(TokenInterface $token = null): bool;
3533

3634
/**
3735
* Resolves whether the passed token implementation is fully authenticated.
38-
*
39-
* @return bool
4036
*/
41-
public function isFullFledged(TokenInterface $token = null);
37+
public function isFullFledged(TokenInterface $token = null): bool;
4238
}

0 commit comments

Comments
 (0)