ImageMetadataResult.php: fix syntax

This commit is contained in:
Zankaria 2025-03-20 23:27:48 +01:00
parent 03b55f9335
commit 0122551b46

View file

@ -10,6 +10,6 @@ class ImageMetadataResult {
public function __construct(int $width, int $height, string $mime) { public function __construct(int $width, int $height, string $mime) {
$this->width = $$width; $this->width = $$width;
$this->height = $$height; $this->height = $$height;
$this->mime = $$mime; $this->mime = $mime;
} }
} }