1 | <?php |
||
2 | |||
3 | namespace Mostafaznv\PdfOptimizer\Events; |
||
4 | |||
5 | use Illuminate\Queue\SerializesModels; |
||
6 | |||
7 | |||
8 | class PdfOptimizerJobFinished |
||
9 | { |
||
10 | use SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
11 | |||
12 | public function __construct( |
||
13 | public readonly string $id, |
||
14 | public readonly bool $status, |
||
15 | public readonly string $message |
||
16 | ) {} |
||
17 | } |
||
18 |