MessageFollowers   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 26
Duplicated Lines 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
wmc 2
eloc 6
c 2
b 1
f 0
dl 0
loc 26
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 2 1
A handle() 0 2 1
1
<?php
2
3
namespace FaithGen\Gallery\Jobs;
4
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Contracts\Queue\ShouldQueue;
7
use Illuminate\Foundation\Bus\Dispatchable;
8
use Illuminate\Queue\InteractsWithQueue;
9
use Illuminate\Queue\SerializesModels;
10
11
class MessageFollowers implements ShouldQueue
12
{
13
    use Dispatchable,
0 ignored issues
show
introduced by
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by FaithGen\Gallery\Jobs\MessageFollowers: $id, $relations, $class, $keyBy
Loading history...
14
        InteractsWithQueue,
15
        Queueable,
16
        SerializesModels;
17
18
    public bool $deleteWhenMissingModels = true;
19
20
    /**
21
     * Create a new job instance.
22
     *
23
     * @return void
24
     */
25
    public function __construct()
26
    {
27
        //
28
    }
29
30
    /**
31
     * Execute the job.
32
     *
33
     * @return void
34
     */
35
    public function handle()
36
    {
37
        //
38
    }
39
}
40