| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | protected function schedule(Schedule $schedule) |
||
| 32 | { |
||
| 33 | // $schedule->command('inspire') |
||
| 34 | // ->hourly(); |
||
| 35 | |||
| 36 | if (substr(Carbon::now(), 0, 10) === $this->date) { |
||
| 37 | $schedule->call(function () { |
||
| 38 | Mail::to('[email protected]')->send(new HelloUser()); |
||
| 39 | })->at('08:00'); |
||
| 40 | } |
||
| 55 |