Skip to content

Commit d5f87ad

Browse files
committed
minor #10107 Fixed some config file paths for Flex and Symfony 4 (javiereguiluz)
This PR was merged into the 4.0 branch. Discussion ---------- Fixed some config file paths for Flex and Symfony 4 Commits ------- f25722d Fixed some config file paths for Flex and Symfony 4
2 parents 13c76ab + f25722d commit d5f87ad

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

controller/argument_value_resolver.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,15 @@ type-hinted method arguments:
7171

7272
.. code-block:: yaml
7373
74-
# app/config/config.yml
74+
# config/packages/sensio_framework_extra.yaml
7575
sensio_framework_extra:
7676
request:
7777
converters: true
7878
auto_convert: false
7979
8080
.. code-block:: xml
8181
82+
<!-- config/packages/sensio_framework_extra.xml -->
8283
<sensio-framework-extra:config>
8384
<request converters="true" auto-convert="true" />
8485
</sensio-framework-extra:config>

reference/configuration/security.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ Using the Argon2i Password Encoder
362362

363363
.. code-block:: yaml
364364
365-
# app/config/security.yml
365+
# config/packages/security.yaml
366366
security:
367367
# ...
368368
@@ -372,7 +372,7 @@ Using the Argon2i Password Encoder
372372
373373
.. code-block:: xml
374374
375-
<!-- app/config/security.xml -->
375+
<!-- config/packages/security.xml -->
376376
<config>
377377
<!-- ... -->
378378
<encoder
@@ -383,7 +383,7 @@ Using the Argon2i Password Encoder
383383
384384
.. code-block:: php
385385
386-
// app/config/security.php
386+
// config/packages/security.php
387387
use Symfony\Component\Security\Core\User\User;
388388
389389
$container->loadFromExtension('security', array(

0 commit comments

Comments
 (0)