| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentBooking\App\Hooks\Scheduler; |
| 4 |
|
| 5 |
use FluentBooking\App\Services\SummaryReportService; |
| 6 |
|
| 7 |
class DailyScheduler |
| 8 |
{ |
| 9 |
public function register() |
| 10 |
{ |
| 11 |
add_action('fluent_booking/daily_tasks', [$this, 'handleDailyTasks']); |
| 12 |
} |
| 13 |
|
| 14 |
public function handleDailyTasks() |
| 15 |
{ |
| 16 |
SummaryReportService::maybeSendSummary(); |
| 17 |
} |
| 18 |
} |