Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4103c16

Browse filesBrowse files
minor #35204 [Security-Guard] fix missing name tag in param docblock (jrushlow)
This PR was merged into the 4.4 branch. Discussion ---------- [Security-Guard] fix 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. | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | Fix #35203 | License | MIT | Doc PR | Added `[name]` tag to `@param` dockBlock for `PasswordAuthenticatedInterface::getPassword()` to comply with the docBlock "standard" and to eliminate PHPStan error's when analyzing `PasswordAuthenticatedInterface.php` Commits ------- 555189a [Security-Guard] fixed 35203 missing name tag in param docblock
2 parents 6832cee + 555189a commit 4103c16
Copy full SHA for 4103c16

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/Symfony/Component/Security/Guard/PasswordAuthenticatedInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Guard/PasswordAuthenticatedInterface.php
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.