Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 0 |
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 | Commands\CheckUuid::class, |
||
19 | Commands\CleanAccountsTable::class, |
||
20 | ]; |
||
21 | |||
22 | /** |
||
23 | * Define the application's command schedule. |
||
24 | */ |
||
25 | protected function schedule(Schedule $schedule) |
||
29 |