From 8ff58296f0a70e1a2af425bc73b268beba6a35e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Bar=C3=A1=C5=A1ek?= Date: Mon, 12 Sep 2022 16:38:44 +0200 Subject: [PATCH] ProductTag: Add label. --- src/DTO/ProductTagInterface.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/DTO/ProductTagInterface.php b/src/DTO/ProductTagInterface.php index bfe1705..bdf66de 100644 --- a/src/DTO/ProductTagInterface.php +++ b/src/DTO/ProductTagInterface.php @@ -13,6 +13,8 @@ public function getSlug(): string; public function setSlug(string $slug): void; + public function getLabel(): string; + public function getImageUrl(): ?string; public function setImageUrl(?string $imageUrl): void;