Skip to content

Commit

Permalink
Update UserPasswordEncoderCommand.php
Browse files Browse the repository at this point in the history
  • Loading branch information
wimme002 authored and fabpot committed Feb 7, 2020
1 parent adacae6 commit 3604bb7
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -87,16 +87,16 @@ protected function configure()
Pass the full user class path as the second argument to encode passwords for
your own entities:
<info>php %command.full_name% --no-interaction [password] App\Entity\User</info>
<info>php %command.full_name% --no-interaction [password] 'App\Entity\User'</info>
Executing the command interactively allows you to generate a random salt for
encoding the password:
<info>php %command.full_name% [password] App\Entity\User</info>
<info>php %command.full_name% [password] 'App\Entity\User'</info>
In case your encoder doesn't require a salt, add the <comment>empty-salt</comment> option:
<info>php %command.full_name% --empty-salt [password] App\Entity\User</info>
<info>php %command.full_name% --empty-salt [password] 'App\Entity\User'</info>
EOF
)
Expand Down

0 comments on commit 3604bb7

Please sign in to comment.