Skip to content

Commit c35917d

Browse files
committed
Use DOCtor-RST 1.69.1
1 parent 983e7ae commit c35917d

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
@@ -975,9 +975,9 @@ a message bus to compute values in a worker:
975975
.. code-block:: php
976976
977977
// config/framework/framework.php
978-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
979978
use Symfony\Component\Cache\Messenger\EarlyExpirationMessage;
980979
use Symfony\Config\FrameworkConfig;
980+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
981981
982982
return static function (FrameworkConfig $framework): void {
983983
$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'));
@@ -1411,8 +1411,8 @@ This can be configured by replacing the ``dsn`` configuration entry with a
14111411
.. code-block:: php
14121412
14131413
// config/packages/mailer.php
1414-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
14151414
use Symfony\Config\FrameworkConfig;
1415+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
14161416
14171417
return static function (FrameworkConfig $framework): void {
14181418
$framework->mailer()

reference/configuration/framework.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1712,8 +1712,8 @@ and also to configure the session handler with a DSN:
17121712
.. code-block:: php
17131713
17141714
// config/packages/framework.php
1715-
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
17161715
use Symfony\Config\FrameworkConfig;
1716+
use function Symfony\Component\DependencyInjection\Loader\Configurator\env;
17171717
17181718
return static function (FrameworkConfig $framework): void {
17191719
// ...

templates.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,8 +510,8 @@ in container parameters <service-container-parameters>`:
510510
.. code-block:: php
511511
512512
// config/packages/twig.php
513-
use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
514513
use Symfony\Config\TwigConfig;
514+
use function Symfony\Component\DependencyInjection\Loader\Configurator\service;
515515
516516
return static function (TwigConfig $twig): void {
517517
// ...

0 commit comments

Comments
 (0)