Kernel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A schedule() 0 4 1
1
<?php namespace JobApis\JobsToMail\Console;
2
3
use Illuminate\Console\Scheduling\Schedule;
4
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
5
6
class Kernel extends ConsoleKernel
7
{
8
    /**
9
     * The Artisan commands provided by your application.
10
     *
11
     * @var array
12
     */
13
    protected $commands = [
14
        Commands\DeleteNotifications::class,
15
        Commands\EmailJobs::class,
16
    ];
17
18
    /**
19
     * Define the application's command schedule.
20
     *
21
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
22
     * @return void
23
     */
24
    protected function schedule(Schedule $schedule)
25
    {
26
        //
27
    }
28
}
29