Skip to content

Commit 659ff75

Browse files
committed
Merge branch '7.4' into 8.0
* 7.4: Use DOCtor-RST 1.69.1
2 parents 20361ff + fb4300b commit 659ff75

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
key: ${{ runner.os }}-doctor-rst-${{ steps.extract_base_branch.outputs.branch }}
7373

7474
- name: "Run DOCtor-RST"
75-
uses: docker://oskarstark/doctor-rst:1.69.0
75+
uses: docker://oskarstark/doctor-rst:1.69.1
7676
with:
7777
args: --short --error-format=github --cache-file=/github/workspace/.cache/doctor-rst.cache
7878

cache.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -952,9 +952,9 @@ a message bus to compute values in a worker:
952952
.. code-block:: php
953953
954954
// config/framework/framework.php
955-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
956955
use Symfony\Component\Cache\Messenger\EarlyExpirationMessage;
957956
use Symfony\Config\FrameworkConfig;
957+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
958958
959959
return static function (FrameworkConfig $framework): void {
960960
$framework->cache()

mailer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ over SMTP by configuring the DSN in your ``.env`` file (the ``user``,
5454
.. code-block:: php
5555
5656
// config/packages/mailer.php
57-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
5857
use Symfony\Config\FrameworkConfig;
58+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
5959
6060
return static function (FrameworkConfig $framework): void {
6161
$framework->mailer()->dsn(env('MAILER_DSN'));
@@ -1663,8 +1663,8 @@ This can be configured by replacing the ``dsn`` configuration entry with a
16631663
.. code-block:: php
16641664
16651665
// config/packages/mailer.php
1666-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
16671666
use Symfony\Config\FrameworkConfig;
1667+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
16681668
16691669
return static function (FrameworkConfig $framework): void {
16701670
$framework->mailer()

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3200,8 +3200,8 @@ and also to configure the session handler with a DSN:
32003200
.. code-block:: php
32013201
32023202
// config/packages/framework.php
3203-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
32043203
use Symfony\Config\FrameworkConfig;
3204+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
32053205
32063206
return static function (FrameworkConfig $framework): void {
32073207
// ...

templates.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -497,8 +497,8 @@ in container parameters <service-container-parameters>`:
497497
.. code-block:: php
498498
499499
// config/packages/twig.php
500-
use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
501500
use Symfony\Config\TwigConfig;
501+
use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
502502
503503
return static function (TwigConfig $twig): void {
504504
// ...

0 commit comments

Comments
 (0)