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 | \App\Console\Commands\CreateDev::class, |
||
17 | \App\Console\Commands\Install::class, |
||
18 | ]; |
||
19 | |||
20 | /** |
||
21 | * Define the application's command schedule. |
||
22 | * |
||
23 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
24 | * |
||
25 | * @return void |
||
26 | */ |
||
27 | 12 | protected function schedule(Schedule $schedule) |
|
32 | |||
33 | /** |
||
34 | * Register the Closure based commands for the application. |
||
35 | * |
||
36 | * @return void |
||
37 | */ |
||
38 | 12 | protected function commands() |
|
42 | } |
||
43 |