File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Filter options
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Original file line number Diff line number Diff line change @@ -336,8 +336,6 @@ console::
336
336
$command = $application->find('app:create-user');
337
337
$commandTester = new CommandTester($command);
338
338
$commandTester->execute([
339
- 'command' => $command->getName(),
340
-
341
339
// pass arguments to the helper
342
340
'username' => 'Wouter',
343
341
Original file line number Diff line number Diff line change @@ -147,8 +147,8 @@ encoding algorithm. Also, each algorithm defines different config options:
147
147
time_cost : 2 # Number of iterations
148
148
threads : 4 # Number of parallel threads
149
149
150
- # PBKDF2 encoder using SHA512 hashing with default options
151
- App \Entity\User : ' sha512'
150
+ # MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
151
+ AppBundle \Entity\User : ' sha512'
152
152
153
153
.. code-block :: xml
154
154
@@ -193,7 +193,7 @@ encoding algorithm. Also, each algorithm defines different config options:
193
193
threads =" 4"
194
194
/>
195
195
196
- <!-- PBKDF2 encoder using SHA512 hashing with default options -->
196
+ <!-- MessageDigestPasswordEncoder encoder using SHA512 hashing with default options -->
197
197
<encoder
198
198
class =" App\Entity\User"
199
199
algorithm =" sha512"
@@ -233,7 +233,7 @@ encoding algorithm. Also, each algorithm defines different config options:
233
233
'threads' => 4, // Number of parallel threads
234
234
],
235
235
236
- // PBKDF2 encoder using SHA512 hashing with default options
236
+ // MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
237
237
User::class => [
238
238
'algorithm' => 'sha512',
239
239
],
You can’t perform that action at this time.
0 commit comments