Total Complexity | 2 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class StartVideoModerationDetection implements ShouldQueue |
||
13 | { |
||
14 | use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; |
||
|
|||
15 | |||
16 | private ?int $mediaId; |
||
17 | |||
18 | private ?int $minConfidence; |
||
19 | |||
20 | /** |
||
21 | * Create a new job instance. |
||
22 | * |
||
23 | * @param int|null $mediaId |
||
24 | * @param int|null $minConfidence |
||
25 | */ |
||
26 | public function __construct($mediaId = null, $minConfidence = null) |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * Execute the job. |
||
34 | * |
||
35 | * @return void |
||
36 | */ |
||
37 | public function handle() |
||
42 |