Skip to content

Commit 3973b0c

Browse files
Add some missing return types to internal/final classes
1 parent e6ea536 commit 3973b0c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Authentication/NoopAuthenticationManager.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
* using the authenticator system. Once the authenticator system is no longer
2222
* experimental, this class can be used to trigger deprecation notices.
2323
*
24-
* @internal
25-
*
2624
* @author Wouter de Jong <[email protected]>
25+
*
26+
* @internal
2727
*/
2828
class NoopAuthenticationManager implements AuthenticationManagerInterface
2929
{
30-
public function authenticate(TokenInterface $token)
30+
public function authenticate(TokenInterface $token): TokenInterface
3131
{
3232
return $token;
3333
}

0 commit comments

Comments
 (0)