@@ -566,22 +566,22 @@ schedule and consider all changes in real-time.
566566Strategies for Adding, Removing, and Modifying Entries within the Schedule
567567~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
568568
569- The schedule provides you with the ability to :method: `Symfony\\ Component\\ Scheduler\S chedule::add `,
570- :method: `Symfony\\ Component\\ Scheduler\S chedule::remove `, or :method: `Symfony\\ Component\\ Scheduler\S chedule::clear `
569+ The schedule provides you with the ability to :method: `Symfony\\ Component\\ Scheduler\\ Schedule::add `,
570+ :method: `Symfony\\ Component\\ Scheduler\\ Schedule::remove `, or :method: `Symfony\\ Component\\ Scheduler\ \ Schedule::clear `
571571all associated recurring messages, resulting in the reset and recalculation of
572572the in-memory stack of recurring messages.
573573
574574For instance, for various reasons, if there's no need to generate a report, a
575575callback can be employed to conditionally skip generating of some or all reports.
576576
577577However, if the intention is to completely remove a recurring message and its recurrence,
578- the :class: `Symfony\\ Component\\ Scheduler\S chedule ` offers a :method: `Symfony\\ Component\\ Scheduler\S chedule::remove `
579- or a :method: `Symfony\\ Component\\ Scheduler\S chedule::removeById ` method. This can
578+ the :class: `Symfony\\ Component\\ Scheduler\\ Schedule ` offers a :method: `Symfony\\ Component\\ Scheduler\ \ Schedule::remove `
579+ or a :method: `Symfony\\ Component\\ Scheduler\\ Schedule::removeById ` method. This can
580580be particularly useful in your case, especially if you need to halt the generation
581581of the recurring message, which involves deleting old reports.
582582
583583In your handler, you can check a condition and, if affirmative, access the
584- :class: `Symfony\\ Component\\ Scheduler\S chedule ` and invoke this method::
584+ :class: `Symfony\\ Component\\ Scheduler\\ Schedule ` and invoke this method::
585585
586586 // src/Scheduler/SaleTaskProvider.php
587587 namespace App\Scheduler;
0 commit comments