PdfOptimizerJobFinished   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 9
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
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
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Mostafaznv\PdfOptimizer\...PdfOptimizerJobFinished: $collectionClass, $relations, $class, $connection, $keyBy
Loading history...
11
12
    public function __construct(
13
        public readonly string $id,
14
        public readonly bool   $status,
15
        public readonly string $message
16
    ) {}
17
}
18