Skip to content

Commit eddfc7e

Browse files
committed
Use oskarstark/doctor-rst:1.70.2
1 parent 7fa6451 commit eddfc7e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
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.70.1
75+
uses: docker://oskarstark/doctor-rst:1.70.2
7676
with:
7777
args: --short --error-format=github --cache-file=/github/workspace/.cache/doctor-rst.cache
7878

mailer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1755,7 +1755,7 @@ SentMessageEvent
17551755

17561756
The ``SentMessageEvent`` event was introduced in Symfony 6.2.
17571757

1758-
``SentMessageEvent`` allows you to act on the :class:`Symfony\\Component\\\Mailer\\\SentMessage`
1758+
``SentMessageEvent`` allows you to act on the :class:`Symfony\\Component\\Mailer\\SentMessage`
17591759
class to access the original message (``getOriginalMessage()``) and some
17601760
:ref:`debugging information <mailer-debugging-emails>` (``getDebug()``) such as
17611761
the HTTP calls made by the HTTP transports, which is useful for debugging errors::

scheduler.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -588,22 +588,22 @@ schedule and consider all changes in real-time.
588588
Strategies for Adding, Removing, and Modifying Entries within the Schedule
589589
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
590590

591-
The schedule provides you with the ability to :method:`Symfony\\Component\\Scheduler\Schedule::add`,
592-
:method:`Symfony\\Component\\Scheduler\Schedule::remove`, or :method:`Symfony\\Component\\Scheduler\Schedule::clear`
591+
The schedule provides you with the ability to :method:`Symfony\\Component\\Scheduler\\Schedule::add`,
592+
:method:`Symfony\\Component\\Scheduler\\Schedule::remove`, or :method:`Symfony\\Component\\Scheduler\\Schedule::clear`
593593
all associated recurring messages, resulting in the reset and recalculation of
594594
the in-memory stack of recurring messages.
595595

596596
For instance, for various reasons, if there's no need to generate a report, a
597597
callback can be employed to conditionally skip generating of some or all reports.
598598

599599
However, if the intention is to completely remove a recurring message and its recurrence,
600-
the :class:`Symfony\\Component\\Scheduler\Schedule` offers a :method:`Symfony\\Component\\Scheduler\Schedule::remove`
601-
or a :method:`Symfony\\Component\\Scheduler\Schedule::removeById` method. This can
600+
the :class:`Symfony\\Component\\Scheduler\\Schedule` offers a :method:`Symfony\\Component\\Scheduler\\Schedule::remove`
601+
or a :method:`Symfony\\Component\\Scheduler\\Schedule::removeById` method. This can
602602
be particularly useful in your case, especially if you need to halt the generation
603603
of the recurring message, which involves deleting old reports.
604604

605605
In your handler, you can check a condition and, if affirmative, access the
606-
:class:`Symfony\\Component\\Scheduler\Schedule` and invoke this method::
606+
:class:`Symfony\\Component\\Scheduler\\Schedule` and invoke this method::
607607

608608
// src/Scheduler/SaleTaskProvider.php
609609
namespace App\Scheduler;

security.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ Form Login
730730

731731
Most websites have a login form where users authenticate using an
732732
identifier (e.g. email address or username) and a password. This
733-
functionality is provided by the built-in :class:`Symfony\\Component\\Security\\Http\Authenticator\\FormLoginAuthenticator`.
733+
functionality is provided by the built-in :class:`Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator`.
734734

735735
You can run the following command to create everything needed to add a login
736736
form in your application:
@@ -1751,7 +1751,7 @@ Login Programmatically
17511751

17521752
.. versionadded:: 6.2
17531753

1754-
The :class:`Symfony\Bundle\SecurityBundle\Security <Symfony\\Bundle\\SecurityBundle\\Security>`
1754+
The :class:`Symfony\\Bundle\\SecurityBundle\\Security`
17551755
class was introduced in Symfony 6.2. Prior to 6.2, it was called
17561756
``Symfony\Component\Security\Core\Security``.
17571757

@@ -1927,7 +1927,7 @@ Logout programmatically
19271927

19281928
.. versionadded:: 6.2
19291929

1930-
The :class:`Symfony\Bundle\SecurityBundle\Security <Symfony\\Bundle\\SecurityBundle\\Security>`
1930+
The :class:`Symfony\\Bundle\\SecurityBundle\\Security`
19311931
class was introduced in Symfony 6.2. Prior to 6.2, it was called
19321932
``Symfony\Component\Security\Core\Security``.
19331933

security/voters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ Custom Access Decision Strategy
454454

455455
If none of the built-in strategies fits your use case, define the ``strategy_service``
456456
option to use a custom service (your service must implement the
457-
:class:`Symfony\\Component\\Security\\Core\Authorization\\Strategy\\AccessDecisionStrategyInterface`):
457+
:class:`Symfony\\Component\\Security\\Core\\Authorization\\Strategy\\AccessDecisionStrategyInterface`):
458458

459459
.. configuration-block::
460460

0 commit comments

Comments
 (0)