| 1 | <?php |
||
| 13 | class Kernel extends ConsoleKernel |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * The Artisan commands provided by your application. |
||
| 17 | * |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $commands = [ |
||
| 21 | UpdateDuty::class, |
||
| 22 | ProcessMonday::class, |
||
| 23 | SendNews::class, |
||
| 24 | SyncLdap::class, |
||
| 25 | RenewTraining::class, |
||
| 26 | ]; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Define the application's command schedule. |
||
| 30 | * |
||
| 31 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | 162 | protected function schedule(Schedule $schedule) |
|
| 51 | } |
||
| 52 |