File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -525,8 +525,8 @@ Symfony provides the following env var processors:
525525 $container->setParameter('private_key', '%env(default:raw_key:file:PRIVATE_KEY)%');
526526 $container->setParameter('raw_key', '%env(PRIVATE_KEY)%');
527527
528- When the fallback parameter is omitted (e.g. ``env(default::API_KEY) ``), the
529- value returned is ``null ``.
528+ When the fallback parameter is omitted (e.g. ``env(default::API_KEY) ``), then the
529+ returned value is ``null ``.
530530
531531 .. versionadded :: 4.3
532532
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ should run in "debug mode". Regardless of the
135135:ref: `configuration environment <configuration-environments >`, a Symfony
136136application can be run with debug mode set to ``true `` or ``false ``.
137137
138- This affects many things in the application, such as displaying stacktraces on
138+ This affects many things in the application, such as displaying stack traces on
139139error pages or if cache files are dynamically rebuilt on each request. Though
140140not a requirement, debug mode is generally set to ``true `` for the ``dev `` and
141141``test `` environments and ``false `` for the ``prod `` environment.
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ Now you need to define the ``ApiKernel`` class used by the new front controller.
7777The easiest way to do this is by duplicating the existing ``src/Kernel.php ``
7878file and make the needed changes.
7979
80- In this example, the ``ApiKernel `` will load less bundles than the default
80+ In this example, the ``ApiKernel `` will load fewer bundles than the default
8181Kernel. Be sure to also change the location of the cache, logs and configuration
8282files so they don't collide with the files from ``src/Kernel.php ``::
8383
You can’t perform that action at this time.
0 commit comments