Job
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 2
dl 0
loc 4
c 0
b 0
f 0
1
<?php namespace App\Jobs;
2
3
use Illuminate\Queue\SerializesModels;
4
use Illuminate\Queue\InteractsWithQueue;
5
use Illuminate\Contracts\Bus\SelfHandling;
6
use Illuminate\Contracts\Queue\ShouldBeQueued;
7
8
abstract class Job implements SelfHandling, ShouldBeQueued
0 ignored issues
show
Deprecated Code introduced by
The interface Illuminate\Contracts\Bus\SelfHandling has been deprecated with message: since version 5.2. Remove from jobs since self-handling is default.

This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.

Loading history...
9
{
10
    use InteractsWithQueue, SerializesModels;
11
}
12