| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class Kernel extends ConsoleKernel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The Artisan commands provided by your application. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $commands = [ |
||
| 16 | Commands\CreateDatabase::class, |
||
| 17 | Commands\ClearStorage::class, |
||
| 18 | Commands\DropDatabase::class, |
||
| 19 | Commands\DropTables::class, |
||
| 20 | Commands\Migrate::class, |
||
| 21 | ]; |
||
| 22 | |||
| 23 | protected function schedule(Schedule $schedule) |
||
| 24 | { |
||
| 25 | $schedule->command('telescope:prune')->daily(); |
||
| 26 | |||
| 27 | // $schedule->command('enso:calendar:send-reminders')->everyMinute(); |
||
| 28 | } |
||
| 29 | |||
| 30 | protected function commands() |
||
| 35 | } |
||
| 36 | } |
||
| 37 |