| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\App\Hooks\Scheduler\AutoSchedules; |
| 4 |
|
| 5 |
|
| 6 |
use FluentCart\App\Hooks\Scheduler\JobRunner; |
| 7 |
|
| 8 |
class FiveMinuteScheduler |
| 9 |
{ |
| 10 |
public function register(): void |
| 11 |
{ |
| 12 |
add_action('fluent_cart/scheduler/five_minutes_tasks', [$this, 'handle']); |
| 13 |
} |
| 14 |
|
| 15 |
public function handle(): void |
| 16 |
{ |
| 17 |
(new JobRunner())->start(); |
| 18 |
} |
| 19 |
} |
| 20 |
|