Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function __construct( |
||
33 | ?string $url, |
||
34 | ?string $fileExtension, |
||
35 | ?int $fileSize, |
||
36 | ?ImageMetadata $imageData, |
||
37 | ?ImagineMetadata $imagineData |
||
38 | ) { |
||
39 | $this->url = $url; |
||
40 | $this->fileExtension = $fileExtension; |
||
41 | $this->fileSize = $fileSize; |
||
42 | $this->imageData = $imageData; |
||
43 | $this->imagineData = $imagineData; |
||
44 | } |
||
71 |