The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Meema\MediaRecognition\Jobs\StartTextDetection: $id, $relations, $class, $keyBy
Loading history...
15
16
private string $path;
17
18
private ?int $mediaId;
19
20
private array $filters;
21
22
/**
23
* Create a new job instance.
24
*
25
* @param string $path
26
* @param int|null $mediaId
27
* @param array $filters
28
*/
29
public function __construct(string $path, $mediaId = null, $filters = [])
This check compares calls to functions or methods with their respective definitions.
If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the
check may pick up the wrong definition and report false positives. One codebase
where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.