Passed
Push — master ( 6b0e6b...43789e )
by Stephen
03:30
created

CleanDevTrackingJob::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace Sfneal\Tracking\Jobs;
4
5
use Sfneal\Queueables\AbstractJob;
6
use Sfneal\Tracking\Actions\CleanDevTrackingAction;
7
8
class CleanDevTrackingJob extends AbstractJob
9
{
10
    /**
11
     * @var string Queue to use
12
     */
13
    public $queue = 'low';
14
15
    /**
16
     * @var string Queue connection to use
17
     */
18
    public $connection = 'database';
19
20
    /**
21
     * Execute the job.
22
     *
23
     * @return void
24
     */
25
    public function handle()
26
    {
27
        CleanDevTrackingAction::execute();
28
    }
29
}
30