Total Complexity | 7 |
Total Lines | 43 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
23 | final class ImageMetadata |
||
24 | { |
||
25 | private int $width = 0; |
||
26 | private int $height = 0; |
||
27 | private string $url; |
||
28 | |||
29 | public function __construct( |
||
50 | } |
||
51 | } |
||
52 | |||
53 | public function getWidth(): int |
||
54 | { |
||
55 | return $this->width; |
||
56 | } |
||
57 | |||
58 | public function getHeight(): int |
||
59 | { |
||
60 | return $this->height; |
||
61 | } |
||
62 | |||
63 | public function getUrl(): string |
||
66 | } |
||
67 | } |
||
68 |