minor #38995 [Security] Fix docblock (derrabus)

This PR was merged into the 4.4 branch.

Discussion
----------

[Security] Fix docblock

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | N/A
| License       | MIT
| Doc PR        | N/A

Commits
-------

60e506835a [Security] Fix docblock.
This commit is contained in:
Nyholm 2020-11-05 09:37:17 +01:00
commit 94818d2a22
No known key found for this signature in database
GPG Key ID: 1187B6F70C4F519E
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ interface TokenStorageInterface
/**
* Sets the authentication token.
*
* @param TokenInterface $token A TokenInterface token, or null if no further authentication information should be stored
* @param TokenInterface|null $token A TokenInterface token, or null if no further authentication information should be stored
*/
public function setToken(TokenInterface $token = null);
}