Skip to content

Commit 1c1f58c

Browse files
Merge branch '4.4' into 5.0
* 4.4: [FrameworkBundle] fix "samesite" in XSD [Console] Consider STDIN interactive Update UserPasswordEncoderCommand.php [HttpFoundation][FrameworkBundle] fix support for samesite in session cookies [DoctrineBridge] Fixed submitting ids with query limit or offset
2 parents 9f407b7 + 4942820 commit 1c1f58c

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)