Skip to content

Commit c4d420c

Browse files
committed
Added the file paths in the config reference
1 parent 09cc5fc commit c4d420c

File tree

6 files changed

+14
-0
lines changed

6 files changed

+14
-0
lines changed

reference/configuration/assetic.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Full Default Configuration
1111

1212
.. code-block:: yaml
1313
14+
# app/config/config.yml
1415
assetic:
1516
debug: '%kernel.debug%'
1617
use_controller:
@@ -61,6 +62,7 @@ Full Default Configuration
6162
6263
.. code-block:: xml
6364
65+
<!-- app/config/config.xml -->
6466
<?xml version="1.0" encoding="UTF-8"?>
6567
<container xmlns="http://symfony.com/schema/dic/services"
6668
xmlns:assetic="http://symfony.com/schema/dic/assetic"

reference/configuration/debug.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,13 @@ destination for dumps. Typically, you would set this to ``php://stderr``:
5656

5757
.. code-block:: yaml
5858
59+
# app/config/config.yml
5960
debug:
6061
dump_destination: php://stderr
6162
6263
.. code-block:: xml
6364
65+
<!-- app/config/config.xml -->
6466
<?xml version="1.0" encoding="UTF-8" ?>
6567
<container xmlns="http://symfony.com/schema/dic/debug"
6668
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -73,6 +75,7 @@ destination for dumps. Typically, you would set this to ``php://stderr``:
7375
7476
.. code-block:: php
7577
78+
// app/config/config.php
7679
$container->loadFromExtension('debug', array(
7780
'dump_destination' => 'php://stderr',
7881
));

reference/configuration/doctrine.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Full Default Configuration
1212

1313
.. code-block:: yaml
1414
15+
# app/config/config.yml
1516
doctrine:
1617
dbal:
1718
default_connection: default
@@ -183,6 +184,7 @@ Full Default Configuration
183184
184185
.. code-block:: xml
185186
187+
<!-- app/config/config.xml -->
186188
<?xml version="1.0" encoding="UTF-8" ?>
187189
<container xmlns="http://symfony.com/schema/dic/services"
188190
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

reference/configuration/monolog.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Full Default Configuration
1414

1515
.. code-block:: yaml
1616
17+
# app/config/config.yml
1718
monolog:
1819
handlers:
1920
@@ -76,6 +77,7 @@ Full Default Configuration
7677
7778
.. code-block:: xml
7879
80+
<!-- app/config/config.xml -->
7981
<container xmlns="http://symfony.com/schema/dic/services"
8082
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
8183
xmlns:monolog="http://symfony.com/schema/dic/monolog"

reference/configuration/twig.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ TwigBundle Configuration ("twig")
88

99
.. code-block:: yaml
1010
11+
# app/config/config.yml
1112
twig:
1213
exception_controller: twig.controller.exception:showAction
1314
@@ -54,6 +55,7 @@ TwigBundle Configuration ("twig")
5455
5556
.. code-block:: xml
5657
58+
<!-- app/config/config.xml -->
5759
<container xmlns="http://symfony.com/schema/dic/services"
5860
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5961
xmlns:twig="http://symfony.com/schema/dic/twig"
@@ -83,6 +85,7 @@ TwigBundle Configuration ("twig")
8385
8486
.. code-block:: php
8587
88+
// app/config/config.php
8689
$container->loadFromExtension('twig', array(
8790
'form_themes' => array(
8891
'form_div_layout.html.twig', // Default

reference/configuration/web_profiler.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Full Default Configuration
1111

1212
.. code-block:: yaml
1313
14+
# app/config/config.yml
1415
web_profiler:
1516
1617
# DEPRECATED, it is not useful anymore and can be removed
@@ -31,6 +32,7 @@ Full Default Configuration
3132
3233
.. code-block:: xml
3334
35+
<!-- app/config/config.xml -->
3436
<web-profiler:config
3537
toolbar="false"
3638
verbose="true"

0 commit comments

Comments
 (0)