mostafaznv /
larupload
| 1 | <?php |
||
| 2 | |||
| 3 | namespace Mostafaznv\Larupload\Events; |
||
| 4 | |||
| 5 | use Illuminate\Queue\SerializesModels; |
||
| 6 | |||
| 7 | class LaruploadFFMpegQueueFinished |
||
| 8 | { |
||
| 9 | use SerializesModels; |
||
|
0 ignored issues
–
show
introduced
by
Loading history...
|
|||
| 10 | |||
| 11 | public int $id; |
||
| 12 | public string $model; |
||
| 13 | public int $statusId; |
||
| 14 | |||
| 15 | public function __construct(int $id, string $model, int $statusId) |
||
| 16 | { |
||
| 17 | $this->id = $id; |
||
| 18 | $this->model = $model; |
||
| 19 | $this->statusId = $statusId; |
||
| 20 | } |
||
| 21 | } |
||
| 22 |