1 | <?php |
||
12 | class Kernel extends ConsoleKernel |
||
13 | { |
||
14 | /** |
||
15 | * The Artisan commands provided by your application. |
||
16 | * |
||
17 | * @var array |
||
18 | */ |
||
19 | protected $commands = [ |
||
20 | \App\Console\Commands\Inspire::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 |