Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d10cdd6

Browse filesBrowse files
committed
minor #13985 [SecurityBundle] UserPasswordEncoderCommand: fix help arguments order. (ogizanagi)
This PR was merged into the 2.7 branch. Discussion ---------- [SecurityBundle] UserPasswordEncoderCommand: fix help arguments order. | Q | A | ------------- | --- | Fixed tickets | ✘ | License | MIT A very small fix about the newly introduced command to encode a user password (#12818). The help message states the command looks like: ``` security:encode-password [password] [salt] [user-class] ``` but is the following instead: ``` security:encode-password [password] [user-class] [salt] ``` Commits ------- 0a5b1b9 [SecurityBundle] UserPasswordEncoderCommand: fix help arguments order.
2 parents d1131db + 0a5b1b9 commit d10cdd6
Copy full SHA for d10cdd6

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/Symfony/Bundle/SecurityBundle/Command/UserPasswordEncoderCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SecurityBundle/Command/UserPasswordEncoderCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ protected function configure()
6060
the command will take care about that for you.
6161
6262
You can also use the non interactive way by typing the following command:
63-
<info>php %command.full_name% [password] [salt] [user-class]</info>
63+
<info>php %command.full_name% [password] [user-class] [salt]</info>
6464
6565
EOF
6666
)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.