The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Meema\MediaRecognition\Jobs\StartLabelDetection: $id, $relations, $class, $keyBy
Loading history...
15
16
private string $path;
17
18
private ?int $mediaId;
19
20
private ?int $minConfidence;
21
22
private int $maxResults;
23
24
/**
25
* Create a new job instance.
26
*
27
* @param string $path
28
* @param int|null $mediaId
29
* @param int|null $minConfidence
30
* @param int $maxResults
31
*/
32
public function __construct(string $path, $mediaId = null, $minConfidence = null, $maxResults = 1000)