Skip to content

Commit cf8cc5b

Browse files
committed
[Scheduler] Remove some unneeded versionadded directives
1 parent 5b30947 commit cf8cc5b

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

scheduler.rst

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
Scheduler
22
=========
33

4-
.. versionadded:: 6.3
5-
6-
The Scheduler component was introduced in Symfony 6.3
7-
84
The scheduler component manages task scheduling within your PHP application, like
95
running a task each night at 3 AM, every two weeks except for holidays or any
106
other custom schedule you might need.
@@ -143,10 +139,6 @@ It uses the same syntax as the `cron command-line utility`_::
143139
// optionally you can define the timezone used by the cron expression
144140
RecurringMessage::cron('* * * * *', new Message(), new \DateTimeZone('Africa/Malabo'));
145141

146-
.. versionadded:: 6.4
147-
148-
The feature to define the cron timezone was introduced in Symfony 6.4.
149-
150142
Before using it, you must install the following dependency:
151143

152144
.. code-block:: terminal
@@ -266,9 +258,9 @@ the Messenger component:
266258
.. image:: /_images/components/scheduler/generate_consume.png
267259
:alt: Symfony Scheduler - generate and consume
268260

269-
.. versionadded:: 6.4
261+
.. tip::
270262

271-
Since version 6.4, you can define your messages via a ``callback`` via the
263+
You can also define your messages via a ``callback`` using the
272264
:class:`Symfony\\Component\\Scheduler\\Trigger\\CallbackMessageProvider`.
273265

274266
Debugging the Schedule
@@ -300,10 +292,6 @@ recurring messages. You can narrow down the list to a specific schedule:
300292
# use the --all option to also display the terminated recurring messages
301293
$ php bin/console --all
302294
303-
.. versionadded:: 6.4
304-
305-
The ``--date`` and ``--all`` options were introduced in Symfony 6.4.
306-
307295
Efficient management with Symfony Scheduler
308296
-------------------------------------------
309297

0 commit comments

Comments
 (0)