Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit f74870e

Browse files
committed
[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.
1 parent 154ab91 commit f74870e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Guard/PasswordAuthenticatedInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ interface PasswordAuthenticatedInterface
1919
/**
2020
* Returns the clear-text password contained in credentials if any.
2121
*
22-
* @param mixed The user credentials
22+
* @param mixed $credentials The user credentials
2323
*/
2424
public function getPassword($credentials): ?string;
2525
}

0 commit comments

Comments
 (0)