Skip to content

Commit f5c4d93

Browse files
committed
Fixed an indentation problem
1 parent 4b8b3fb commit f5c4d93

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

cookbook/assetic/php.rst

+18-18
Original file line numberDiff line numberDiff line change
@@ -89,28 +89,28 @@ First, configure a new ``scssphp`` Assetic filter as follows:
8989
9090
.. code-block:: xml
9191
92-
<!-- app/config/config.xml -->
93-
<?xml version="1.0" charset="UTF-8" ?>
94-
<container xmlns="http://symfony.com/schema/dic/services"
95-
xmlns:assetic="http://symfony.com/schema/dic/assetic">
92+
<!-- app/config/config.xml -->
93+
<?xml version="1.0" charset="UTF-8" ?>
94+
<container xmlns="http://symfony.com/schema/dic/services"
95+
xmlns:assetic="http://symfony.com/schema/dic/assetic">
9696
97-
<assetic:config>
98-
<filter name="scssphp" formatter="Leafo\ScssPhp\Formatter\Compressed" />
99-
<!-- ... -->
100-
</assetic:config>
101-
</container>
97+
<assetic:config>
98+
<filter name="scssphp" formatter="Leafo\ScssPhp\Formatter\Compressed" />
99+
<!-- ... -->
100+
</assetic:config>
101+
</container>
102102
103103
.. code-block:: php
104104
105-
// app/config/config.php
106-
$container->loadFromExtension('assetic', array(
107-
'filters' => array(
108-
'scssphp' => array(
109-
'formatter' => 'Leafo\ScssPhp\Formatter\Compressed',
110-
),
111-
// ...
112-
),
113-
));
105+
// app/config/config.php
106+
$container->loadFromExtension('assetic', array(
107+
'filters' => array(
108+
'scssphp' => array(
109+
'formatter' => 'Leafo\ScssPhp\Formatter\Compressed',
110+
),
111+
// ...
112+
),
113+
));
114114
115115
The value of the ``formatter`` option is the fully qualified class name of the
116116
formatter used by the filter to produce the compiled CSS file. Using the

0 commit comments

Comments
 (0)