@@ -571,22 +571,22 @@ schedule and consider all changes in real-time.
571571Strategies for Adding, Removing, and Modifying Entries within the Schedule
572572~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
573573
574- The schedule provides you with the ability to :method: `Symfony\\ Component\\ Scheduler\S chedule::add `,
575- :method: `Symfony\\ Component\\ Scheduler\S chedule::remove `, or :method: `Symfony\\ Component\\ Scheduler\S chedule::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 `
576576all associated recurring messages, resulting in the reset and recalculation of
577577the in-memory stack of recurring messages.
578578
579579For instance, for various reasons, if there's no need to generate a report, a
580580callback can be employed to conditionally skip generating of some or all reports.
581581
582582However, if the intention is to completely remove a recurring message and its recurrence,
583- the :class: `Symfony\\ Component\\ Scheduler\S chedule ` offers a :method: `Symfony\\ Component\\ Scheduler\S chedule::remove `
584- or a :method: `Symfony\\ Component\\ Scheduler\S chedule::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
585585be particularly useful in your case, especially if you need to halt the generation
586586of the recurring message, which involves deleting old reports.
587587
588588In your handler, you can check a condition and, if affirmative, access the
589- :class: `Symfony\\ Component\\ Scheduler\S chedule ` and invoke this method::
589+ :class: `Symfony\\ Component\\ Scheduler\\ Schedule ` and invoke this method::
590590
591591 // src/Scheduler/SaleTaskProvider.php
592592 namespace App\Scheduler;
0 commit comments