Skip to content

Commit ac9fbb2

Browse files
committed
Merge branch '3.4' into 4.3
* 3.4: remove 'command' from execute argument Fixes #12662
2 parents bf930b4 + 6c67c6e commit ac9fbb2

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

console.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,8 +336,6 @@ console::
336336
$command = $application->find('app:create-user');
337337
$commandTester = new CommandTester($command);
338338
$commandTester->execute([
339-
'command' => $command->getName(),
340-
341339
// pass arguments to the helper
342340
'username' => 'Wouter',
343341

reference/configuration/security.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ encoding algorithm. Also, each algorithm defines different config options:
147147
time_cost: 2 # Number of iterations
148148
threads: 4 # Number of parallel threads
149149
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'
152152
153153
.. code-block:: xml
154154
@@ -193,7 +193,7 @@ encoding algorithm. Also, each algorithm defines different config options:
193193
threads="4"
194194
/>
195195
196-
<!-- PBKDF2 encoder using SHA512 hashing with default options -->
196+
<!-- MessageDigestPasswordEncoder encoder using SHA512 hashing with default options -->
197197
<encoder
198198
class="App\Entity\User"
199199
algorithm="sha512"
@@ -233,7 +233,7 @@ encoding algorithm. Also, each algorithm defines different config options:
233233
'threads' => 4, // Number of parallel threads
234234
],
235235
236-
// PBKDF2 encoder using SHA512 hashing with default options
236+
// MessageDigestPasswordEncoder encoder using SHA512 hashing with default options
237237
User::class => [
238238
'algorithm' => 'sha512',
239239
],

0 commit comments

Comments
 (0)