diff --git a/configuration/env_var_processors.rst b/configuration/env_var_processors.rst index a94a8dc3555..baf4037d05a 100644 --- a/configuration/env_var_processors.rst +++ b/configuration/env_var_processors.rst @@ -104,8 +104,9 @@ Symfony provides the following env var processors: }; ``env(bool:FOO)`` - Casts ``FOO`` to a bool (``true`` values are ``'true'``, ``'on'``, ``'yes'`` - and all numbers except ``0`` and ``0.0``; everything else is ``false``): + Casts ``FOO`` to a bool (``true`` values are ``'true'``, ``'on'``, ``'yes'``, + all numbers except ``0`` and ``0.0`` and all numeric strings except ``'0'`` + and ``'0.0'``; everything else is ``false``): .. configuration-block:: diff --git a/index.rst b/index.rst index 86893b84ac4..c566e5f8671 100644 --- a/index.rst +++ b/index.rst @@ -85,4 +85,7 @@ Create your Own Framework Want to create your own framework based on Symfony? -.. include:: /create_framework/map.rst.inc +.. toctree:: + :maxdepth: 2 + + create_framework/index