From 555189ae2c9d089af59f62cff4d9d8f6b9928e19 Mon Sep 17 00:00:00 2001 From: Jesse Rushlow Date: Fri, 3 Jan 2020 18:06:56 -0500 Subject: [PATCH] [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. --- .../Component/Security/Guard/PasswordAuthenticatedInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Guard/PasswordAuthenticatedInterface.php b/src/Symfony/Component/Security/Guard/PasswordAuthenticatedInterface.php index 4dd7a7b446..dd2eeba33d 100644 --- a/src/Symfony/Component/Security/Guard/PasswordAuthenticatedInterface.php +++ b/src/Symfony/Component/Security/Guard/PasswordAuthenticatedInterface.php @@ -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; }