Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class ProcessJobStatusTransitions implements ShouldQueue |
||
16 | { |
||
17 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
18 | |||
19 | /** |
||
20 | * Create a new job instance. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function __construct() |
||
26 | // |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * Execute the job. |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function handle() |
||
47 |