Job
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
c 0
b 0
f 0
wmc 0
1
<?php
2
3
namespace App\Jobs;
4
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Queue\SerializesModels;
7
use Illuminate\Queue\InteractsWithQueue;
8
use Illuminate\Contracts\Queue\ShouldQueue;
9
10
abstract class Job implements ShouldQueue
11
{
12
    /*
13
    |--------------------------------------------------------------------------
14
    | Queueable Jobs
15
    |--------------------------------------------------------------------------
16
    |
17
    | This job base class provides a central location to place any logic that
18
    | is shared across all of your jobs. The trait included with the class
19
    | provides access to the "queueOn" and "delay" queue helper methods.
20
    |
21
    */
22
23
    use InteractsWithQueue, Queueable, SerializesModels;
0 ignored issues
show
introduced by
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Jobs\Job: $id, $class, $relations
Loading history...
24
}
25