Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
23 | class FileInfo |
||
24 | { |
||
25 | use IdTrait; |
||
26 | |||
27 | public string $path; |
||
28 | public string $mimeType; |
||
29 | public int $fileSize; |
||
30 | public ?int $width; |
||
31 | public ?int $height; |
||
32 | public ?string $filter; |
||
33 | |||
34 | public function __construct(string $path, string $mimeType, int $fileSize, ?int $width, ?int $height, ?string $filter = null) |
||
44 |