| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | 354 | protected function schedule(Schedule $schedule) |
|
| 29 | { |
||
| 30 | //$schedule->command('inspire') |
||
| 31 | // ->hourly(); |
||
| 32 | 354 | $schedule->command('sync:caldav --background')->withoutOverlapping()->everyTenMinutes(); |
|
| 33 | 354 | $schedule->command('optimise:meetings --background')->withoutOverlapping()->weekly()->sundays()->at('00:00'); |
|
| 34 | 354 | } |
|
| 35 | } |
||
| 36 |