Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
9 | class LabelAnalysisCompleted |
||
10 | { |
||
11 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
12 | |||
13 | public $message; |
||
14 | |||
15 | public ?int $mediaId; |
||
16 | |||
17 | /** |
||
18 | * Create a new event instance. |
||
19 | * |
||
20 | * @param $message |
||
21 | * @param int|null $mediaId |
||
22 | */ |
||
23 | public function __construct($message, int $mediaId = null) |
||
29 |