| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | protected function schedule(Schedule $schedule) |
||
| 33 | { |
||
| 34 | $schedule->command('delete:expiredTokens') |
||
| 35 | ->daily()->at('4:00') |
||
| 36 | ->appendOutputTo(storage_path('logs/cron_delete_expired_tokens.log')); |
||
| 37 | |||
| 38 | $schedule->command('send:taskNotifications') |
||
| 39 | ->daily()->at('8:00') |
||
| 40 | ->appendOutputTo(storage_path('logs/cron_send_task_notifications.log')); |
||
| 41 | } |
||
| 43 |