From 20e562eb8e26a8477a6312cc74285093daeecdff Mon Sep 17 00:00:00 2001 From: javaDeveloperKid <25783196+javaDeveloperKid@users.noreply.github.com> Date: Fri, 16 Feb 2024 22:12:12 +0100 Subject: [PATCH 1/3] be more specific about bool env var processor --- configuration/env_var_processors.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/env_var_processors.rst b/configuration/env_var_processors.rst index b5539868524..33ab4947449 100644 --- a/configuration/env_var_processors.rst +++ b/configuration/env_var_processors.rst @@ -105,7 +105,7 @@ 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``): + and all numbers (also of a string type) except ``0`` and ``0.0``; everything else is ``false``): .. configuration-block:: From 85ba3639c1068dab2d654c4ee1c5b704534c300b Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 20 Feb 2024 08:44:19 +0100 Subject: [PATCH 2/3] Reword --- configuration/env_var_processors.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configuration/env_var_processors.rst b/configuration/env_var_processors.rst index 33ab4947449..475a078c0a5 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 (also of a string type) 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:: From f968ab2d8d38ff8fa414cb645ccc7c89145e7d90 Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 20 Feb 2024 13:08:09 +0100 Subject: [PATCH 3/3] Fix the toctree syntax of some content --- index.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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