Skip to content

Commit e0385ad

Browse files
committed
fixup! Added missing type hints to Ibexa\Contracts\Core\Repository\Values\Content\Thumbnail
1 parent 7d120c3 commit e0385ad

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/contracts/Repository/Values/Content/Thumbnail.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ class Thumbnail extends ValueObject
2323
*/
2424
protected string $resource;
2525

26-
protected ?int $width;
26+
protected ?int $width = null;
2727

28-
protected ?int $height;
28+
protected ?int $height = null;
2929

30-
protected ?string $mimeType;
30+
protected ?string $mimeType = null;
3131
}

0 commit comments

Comments
 (0)