| 1 | <?php |
||
| 10 | class Kernel extends ConsoleKernel |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The Artisan commands provided by your application. |
||
| 14 | * |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | protected $commands = [ |
||
| 18 | GenerateDoc::class, |
||
| 19 | MakeNotificationsCommand::class, |
||
| 20 | UpdateTeachersWorkingHoursCommand::class |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Define the application's command schedule. |
||
| 25 | * |
||
| 26 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
| 27 | * @return void |
||
| 28 | */ |
||
| 29 | protected function schedule(Schedule $schedule) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Register the commands for the application. |
||
| 37 | * |
||
| 38 | * @return void |
||
| 39 | */ |
||
| 40 | protected function commands() |
||
| 46 | } |
||
| 47 |