Skip to content

Commit 4942820

Browse files
Merge branch '3.4' into 4.4
* 3.4: [FrameworkBundle] fix "samesite" in XSD Update UserPasswordEncoderCommand.php [HttpFoundation][FrameworkBundle] fix support for samesite in session cookies [DoctrineBridge] Fixed submitting ids with query limit or offset
2 parents f1e6fce + 1898d4f commit 4942820

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Command/UserPasswordEncoderCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,16 @@ protected function configure()
8282
Pass the full user class path as the second argument to encode passwords for
8383
your own entities:
8484
85-
<info>php %command.full_name% --no-interaction [password] App\Entity\User</info>
85+
<info>php %command.full_name% --no-interaction [password] 'App\Entity\User'</info>
8686
8787
Executing the command interactively allows you to generate a random salt for
8888
encoding the password:
8989
90-
<info>php %command.full_name% [password] App\Entity\User</info>
90+
<info>php %command.full_name% [password] 'App\Entity\User'</info>
9191
9292
In case your encoder doesn't require a salt, add the <comment>empty-salt</comment> option:
9393
94-
<info>php %command.full_name% --empty-salt [password] App\Entity\User</info>
94+
<info>php %command.full_name% --empty-salt [password] 'App\Entity\User'</info>
9595
9696
EOF
9797
)

0 commit comments

Comments
 (0)