1 | <?php |
||
11 | class Kernel extends ConsoleKernel |
||
12 | { |
||
13 | /** |
||
14 | * The Artisan commands provided by your application. |
||
15 | * |
||
16 | * @var array |
||
17 | */ |
||
18 | protected $commands = [ |
||
19 | Commands\Setup::class, |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Define the application's command schedule. |
||
24 | * |
||
25 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
26 | * @return void |
||
27 | */ |
||
28 | protected function schedule(Schedule $schedule) |
||
31 | } |