From b185585d74896cd8107189c1b4312d873ee70183 Mon Sep 17 00:00:00 2001 From: phodoval <9001218+phodoval@users.noreply.github.com> Date: Thu, 9 Jul 2026 08:31:36 +0200 Subject: [PATCH] [create-pull-request] automated change --- src/Component/Entity/Product/Images/Item.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Component/Entity/Product/Images/Item.php b/src/Component/Entity/Product/Images/Item.php index 4f020a6f..83aac06f 100644 --- a/src/Component/Entity/Product/Images/Item.php +++ b/src/Component/Entity/Product/Images/Item.php @@ -14,6 +14,7 @@ class Item extends Entity protected ?string $description; protected TypeDateTimeNullable $changeTime; protected ?bool $isMainImage; + protected string $gallery; public function getName(): string { @@ -91,4 +92,15 @@ public function setIsMainImage(?bool $isMainImage): static $this->isMainImage = $isMainImage; return $this; } + + public function getGallery(): string + { + return $this->gallery; + } + + public function setGallery(string $gallery): static + { + $this->gallery = $gallery; + return $this; + } }