Skip to content

Commit d33eaac

Browse files
Merge branch '5.4' into 6.0
* 5.4: More return type fixes (bis) Cleanup `@return` annotations
2 parents 9b4de4e + c498e19 commit d33eaac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Authentication/AuthenticationManagerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ interface AuthenticationManagerInterface
2727
/**
2828
* Attempts to authenticate a TokenInterface object.
2929
*
30-
* @return TokenInterface An authenticated TokenInterface instance, never null
30+
* @return TokenInterface
3131
*
3232
* @throws AuthenticationException if the authentication fails
3333
*/

Authentication/Token/Storage/TokenStorageInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ interface TokenStorageInterface
2323
/**
2424
* Returns the current security token.
2525
*
26-
* @return TokenInterface|null A TokenInterface instance or null if no authentication information is available
26+
* @return TokenInterface|null
2727
*/
2828
public function getToken();
2929

0 commit comments

Comments
 (0)