Skip to content

Commit 3e765e0

Browse files
authored
Rename UserFixture to UserFixtures
1 parent e6ce91b commit 3e765e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

security.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,18 +177,18 @@ create dummy database users:
177177
$ php bin/console make:fixtures
178178
179179
The class name of the fixtures to create (e.g. AppFixtures):
180-
> UserFixture
180+
> UserFixtures
181181
182182
Use this service to encode the passwords:
183183

184184
.. code-block:: diff
185185
186-
// src/DataFixtures/UserFixture.php
186+
// src/DataFixtures/UserFixtures.php
187187
188188
+ use Symfony\Component\Security\Core\Encoder\UserPasswordEncoderInterface;
189189
// ...
190190
191-
class UserFixture extends Fixture
191+
class UserFixtures extends Fixture
192192
{
193193
+ private $passwordEncoder;
194194

0 commit comments

Comments
 (0)