Skip to content

Commit 7b8486a

Browse files
committed
minor #11774 kernel.debug is a boolean, not a string (OskarStark)
This PR was merged into the 3.4 branch. Discussion ---------- kernel.debug is a boolean, not a string <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 4d84a69 kernel.debug is a boolean, not a string
2 parents fc07937 + 4d84a69 commit 7b8486a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reference/configuration/twig.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Configuration
5555
auto_reload
5656
~~~~~~~~~~~
5757

58-
**type**: ``boolean`` **default**: ``'%kernel.debug%'``
58+
**type**: ``boolean`` **default**: ``%kernel.debug%``
5959

6060
If ``true``, whenever a template is rendered, Symfony checks first if its source
6161
code has changed since it was compiled. If it has changed, the template is
@@ -174,7 +174,7 @@ specific timezone is passed as argument.
174174
debug
175175
~~~~~
176176

177-
**type**: ``boolean`` **default**: ``'%kernel.debug%'``
177+
**type**: ``boolean`` **default**: ``%kernel.debug%``
178178

179179
If ``true``, the compiled templates include a ``__toString()`` method that can
180180
be used to display their nodes.

0 commit comments

Comments
 (0)