The trait FaithGen\SDK\Traits\ProcessesImages requires some properties which are not provided by Innoflash\Events\Jobs\Saved\ProcessImage: $name, $images
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Innoflash\Events\Jobs\Saved\ProcessImage: $id, $relations, $class, $keyBy
Loading history...
17
InteractsWithQueue,
18
Queueable,
19
SerializesModels,
20
ProcessesImages;
21
22
public bool $deleteWhenMissingModels = true;
23
protected Event $event;
24
25
/**
26
* Create a new job instance.
27
*
28
* @param Event $event
29
*/
30
public function __construct(Event $event)
31
{
32
$this->event = $event;
33
}
34
35
/**
36
* Execute the job.
37
*
38
* @param ImageManager $imageManager
39
*
40
* @return void
41
*/
42
public function handle(ImageManager $imageManager)