Skip to content

Commit e1f7c73

Browse files
committed
Merge branch '6.4' into 7.2
* 6.4: Use DOCtor-RST 1.69.1
2 parents 0a8826d + aa9df3b commit e1f7c73

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
@@ -950,9 +950,9 @@ a message bus to compute values in a worker:
950950
.. code-block:: php
951951
952952
// config/framework/framework.php
953-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
954953
use Symfony\Component\Cache\Messenger\EarlyExpirationMessage;
955954
use Symfony\Config\FrameworkConfig;
955+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
956956
957957
return static function (FrameworkConfig $framework): void {
958958
$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'));
@@ -1428,8 +1428,8 @@ This can be configured by replacing the ``dsn`` configuration entry with a
14281428
.. code-block:: php
14291429
14301430
// config/packages/mailer.php
1431-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
14321431
use Symfony\Config\FrameworkConfig;
1432+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
14331433
14341434
return static function (FrameworkConfig $framework): void {
14351435
$framework->mailer()

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3177,8 +3177,8 @@ and also to configure the session handler with a DSN:
31773177
.. code-block:: php
31783178
31793179
// config/packages/framework.php
3180-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
31813180
use Symfony\Config\FrameworkConfig;
3181+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
31823182
31833183
return static function (FrameworkConfig $framework): void {
31843184
// ...

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)