File tree Expand file tree Collapse file tree 4 files changed +8
-16
lines changed Expand file tree Collapse file tree 4 files changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -711,11 +711,10 @@ Learn more
711711 :maxdepth: 1
712712 :glob:
713713
714- form/*
715-
716- * :doc: `/controller/upload_file `
717- * :doc: `/reference/forms/types `
718- * :doc: `/http_cache/form_csrf_caching `
714+ /form/*
715+ /controller/upload_file
716+ /reference/forms/types
717+ /http_cache/form_csrf_caching
719718
720719.. _`Symfony Form component` : https://github.com/symfony/form
721720.. _`DateTime` : https://php.net/manual/en/class.datetime.php
Original file line number Diff line number Diff line change @@ -2090,7 +2090,7 @@ settings from the base pool as defaults.
20902090
20912091.. note ::
20922092
2093- Your service MUST implement the ``Psr\\ Cache\ \CacheItemPoolInterface `` interface.
2093+ Your service MUST implement the ``Psr\Cache\CacheItemPoolInterface `` interface.
20942094
20952095public
20962096""""""
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -143,13 +143,6 @@ utilities used in the functional tests:
143143
144144 Your First Functional Test
145145~~~~~~~~~~~~~~~~~~~~~~~~~~
146-
147- First, install the BrowserKit component in your project:
148-
149- .. code-block :: terminal
150-
151- $ composer require --dev symfony/browser-kit
152-
153146Functional tests are PHP files that typically live in the ``tests/Controller ``
154147directory for your bundle. If you want to test the pages handled by your
155148``PostController `` class, start by creating a new ``PostControllerTest.php ``
You can’t perform that action at this time.
0 commit comments