Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
34 | public function __construct(string $path, string $mimeType, int $fileSize, ?int $width, ?int $height, ?string $filter = null) |
||
35 | { |
||
36 | $this->path = $path; |
||
37 | $this->mimeType = $mimeType; |
||
38 | $this->width = $width; |
||
39 | $this->height = $height; |
||
40 | $this->fileSize = $fileSize; |
||
41 | $this->filter = $filter; |
||
42 | } |
||
44 |