Skip to content

Commit

Permalink
Fix property doc for hashed password to allow nullable string
Browse files Browse the repository at this point in the history
  • Loading branch information
mounir33320 committed Dec 15, 2024
1 parent 0624f13 commit 77201dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Security/UserClassBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private function addGetPassword(ClassSourceManipulator $manipulator, UserClassCo
return;
}

$propertyDocs = '@var string The hashed password';
$propertyDocs = '@var ?string The hashed password';
if ($userClassConfig->isEntity()) {
// add entity property
$manipulator->addEntityField(
Expand Down

0 comments on commit 77201dc

Please sign in to comment.