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:
525
525
$container->setParameter('private_key', '%env(default:raw_key:file:PRIVATE_KEY)%');
526
526
$container->setParameter('raw_key', '%env(PRIVATE_KEY)%');
527
527
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 ``.
530
530
531
531
.. versionadded :: 4.3
532
532
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ should run in "debug mode". Regardless of the
135
135
:ref: `configuration environment <configuration-environments >`, a Symfony
136
136
application can be run with debug mode set to ``true `` or ``false ``.
137
137
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
139
139
error pages or if cache files are dynamically rebuilt on each request. Though
140
140
not a requirement, debug mode is generally set to ``true `` for the ``dev `` and
141
141
``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.
77
77
The easiest way to do this is by duplicating the existing ``src/Kernel.php ``
78
78
file and make the needed changes.
79
79
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
81
81
Kernel. Be sure to also change the location of the cache, logs and configuration
82
82
files so they don't collide with the files from ``src/Kernel.php ``::
83
83
You can’t perform that action at this time.
0 commit comments