Issues (9)

app/Jobs/Job.php (1 issue)

Severity
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
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Jobs\Job: $id, $class, $relations
Loading history...
24
}
25