From 121cbf4f50c32d9be8bc72896ff89eeddf1db99c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nu=C5=A1a=20Puk=C5=A1i=C4=8D?= Date: Thu, 25 Dec 2025 12:57:34 +0100 Subject: [PATCH] Cleanup --- src/Entity/MainCategory.php | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/Entity/MainCategory.php diff --git a/src/Entity/MainCategory.php b/src/Entity/MainCategory.php deleted file mode 100644 index f3e7b36..0000000 --- a/src/Entity/MainCategory.php +++ /dev/null @@ -1,30 +0,0 @@ -title; - } - - public function setTitle(string $title): void - { - $this->title = $title; - } - - public function getTags(): array - { - return $this->tags; - } - - public function setTags(array $tags): void - { - $this->tags = $tags; - } - - -}