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 | Commands\Export::class, |
||
17 | Commands\ExportAccounts::class, |
||
18 | Commands\ExportGroups::class, |
||
19 | Commands\ExportWhitelists::class, |
||
20 | Commands\ExportCategories::class, |
||
21 | Commands\UpdateAccounts::class, |
||
22 | ]; |
||
23 | |||
24 | /** |
||
25 | * Define the application's command schedule. |
||
26 | * |
||
27 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
28 | * @return void |
||
29 | */ |
||
30 | protected function schedule(Schedule $schedule) |
||
35 | } |
||
36 |