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