Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
maelanleborgne committed Feb 21, 2024
1 parent c44eef2 commit ec6fc21
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 @@ -268,7 +268,7 @@ private function addUniqueConstraint(ClassSourceManipulator $manipulator, UserCl
$manipulator->addAttributeToClass(
'ORM\\UniqueConstraint',
[
'name' => 'UNIQ_IDENTIFIER_' . strtoupper(Str::asSnakeCase($userClassConfig->getIdentityPropertyName())),
'name' => 'UNIQ_IDENTIFIER_'.strtoupper(Str::asSnakeCase($userClassConfig->getIdentityPropertyName())),
'fields' => [$userClassConfig->getIdentityPropertyName()],
]
);
Expand Down

0 comments on commit ec6fc21

Please sign in to comment.