@@ -588,22 +588,22 @@ schedule and consider all changes in real-time.
588588Strategies for Adding, Removing, and Modifying Entries within the Schedule
589589~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
590590
591- The schedule provides you with the ability to :method: `Symfony\\ Component\\ Scheduler\S chedule::add `,
592- :method: `Symfony\\ Component\\ Scheduler\S chedule::remove `, or :method: `Symfony\\ Component\\ Scheduler\S chedule::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 `
593593all associated recurring messages, resulting in the reset and recalculation of
594594the in-memory stack of recurring messages.
595595
596596For instance, for various reasons, if there's no need to generate a report, a
597597callback can be employed to conditionally skip generating of some or all reports.
598598
599599However, if the intention is to completely remove a recurring message and its recurrence,
600- the :class: `Symfony\\ Component\\ Scheduler\S chedule ` offers a :method: `Symfony\\ Component\\ Scheduler\S chedule::remove `
601- or a :method: `Symfony\\ Component\\ Scheduler\S chedule::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
602602be particularly useful in your case, especially if you need to halt the generation
603603of the recurring message, which involves deleting old reports.
604604
605605In your handler, you can check a condition and, if affirmative, access the
606- :class: `Symfony\\ Component\\ Scheduler\S chedule ` and invoke this method::
606+ :class: `Symfony\\ Component\\ Scheduler\\ Schedule ` and invoke this method::
607607
608608 // src/Scheduler/SaleTaskProvider.php
609609 namespace App\Scheduler;
0 commit comments