# fluent-booking/1.7.0/app/Hooks/Scheduler/DailyScheduler.php

Fluent Booking – The Ultimate Appointments Scheduling, Events Booking, Events Calendar Solution, version 1.7.0. 18 lines.

- Page: https://pluginprobe.com/plugins/fluent-booking/1.7.0/code/app/Hooks/Scheduler/DailyScheduler.php
- Raw: https://pluginprobe.com/plugins/fluent-booking/1.7.0/raw/app/Hooks/Scheduler/DailyScheduler.php
- Modified: 2024-07-16T14:25:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fluent-booking/1.7.0/code/app/Hooks/Scheduler/DailyScheduler.php#L10-L20`.

```php
<?php

namespace FluentBooking\App\Hooks\Scheduler;

use FluentBooking\App\Services\SummaryReportService;

class DailyScheduler
{
    public function register()
    {
        add_action('fluent_booking/daily_tasks', [$this, 'handleDailyTasks']);
    }

    public function handleDailyTasks()
    {
        SummaryReportService::maybeSendSummary();
    }
}
```
