8000 minor #14470 [Security] Remove extra argument from call to EntityMana… · symfony/symfony-docs@0153411 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0153411

Browse files
committed
minor #14470 [Security] Remove extra argument from call to EntityManager#flush() (chalasr)
This PR was merged into the 4.4 branch. Discussion ---------- [Security] Remove extra argument from call to EntityManager#flush() See https://github.com/doctrine/orm/blob/master/UPGRADE.md#bc-break-removed-entitymanagerflushentity-and-entitymanagerflushentities Commits ------- 3194c22 [Security] Remove extra argument from call to EntityManager#flush()
2 parents 2f25a69 + 3194c22 commit 0153411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

security/password_migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ storing the newly created password hash::
190190
$user->setPassword($newEncodedPassword);
191191

192192
// execute the queries on the database
193-
$this->getEntityManager()->flush($user);
193+
$this->getEntityManager()->flush();
194194
}
195195
}
196196

0 commit comments

Comments
 (0)
0