Skip to content

Commit 10b5786

Browse files
committed
Merge branch '7.3' into 7.4
* 7.3: Use oskarstark/doctor-rst:1.70.2
2 parents 11bc140 + 687605e commit 10b5786

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
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
@@ -1987,7 +1987,7 @@ SentMessageEvent
19871987

19881988
**Event Class**: :class:`Symfony\\Component\\Mailer\\Event\\SentMessageEvent`
19891989

1990-
``SentMessageEvent`` allows you to act on the :class:`Symfony\\Component\\\Mailer\\\SentMessage`
1990+
``SentMessageEvent`` allows you to act on the :class:`Symfony\\Component\\Mailer\\SentMessage`
19911991
class to access the original message (``getOriginalMessage()``) and some
19921992
:ref:`debugging information <mailer-debugging-emails>` (``getDebug()``) such as
19931993
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
@@ -571,22 +571,22 @@ schedule and consider all changes in real-time.
571571
Strategies for Adding, Removing, and Modifying Entries within the Schedule
572572
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
573573

574-
The schedule provides you with the ability to :method:`Symfony\\Component\\Scheduler\Schedule::add`,
575-
:method:`Symfony\\Component\\Scheduler\Schedule::remove`, or :method:`Symfony\\Component\\Scheduler\Schedule::clear`
574+
The schedule provides you with the ability to :method:`Symfony\\Component\\Scheduler\\Schedule::add`,
575+
:method:`Symfony\\Component\\Scheduler\\Schedule::remove`, or :method:`Symfony\\Component\\Scheduler\\Schedule::clear`
576576
all associated recurring messages, resulting in the reset and recalculation of
577577
the in-memory stack of recurring messages.
578578

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

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

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

591591
// src/Scheduler/SaleTaskProvider.php
592592
namespace App\Scheduler;

security.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,7 +713,7 @@ Form Login
713713

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

718718
You can run the following command to create everything needed to add a login
719719
form in your application:
@@ -2839,7 +2839,7 @@ anonymous users access by checking if there is no user set on the token::
28392839
}
28402840

28412841
.. versionadded:: 7.3
2842-
2842+
28432843
The ``$vote`` argument of the ``voteOnAttribute()`` method was introduced
28442844
in Symfony 7.3.
28452845

security/voters.rst

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

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

486486
.. configuration-block::
487487

0 commit comments

Comments
 (0)