[Security-Guard] fixed 35203 missing name tag in param docblock

Added missing $credentials name tag to @param for getPassword()
to resolve PHPStan error and comply with the docBlock spec.
This commit is contained in:
Jesse Rushlow 2020-01-03 18:06:56 -05:00
parent 6832cee3dd
commit 555189ae2c
No known key found for this signature in database
GPG Key ID: 0741096D2ADE04CA

View File

@ -19,7 +19,7 @@ interface PasswordAuthenticatedInterface
/**
* Returns the clear-text password contained in credentials if any.
*
* @param mixed The user credentials
* @param mixed $credentials The user credentials
*/
public function getPassword($credentials): ?string;
}