Kernel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 28
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A schedule() 0 5 1
1
<?php
2
3
namespace App\Console;
4
5
use Illuminate\Console\Scheduling\Schedule;
6
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
7
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)
31
    {
32
        // $schedule->command('inspire')
33
        //          ->hourly();
34
    }
35
}
36