From 1d16104f1ac207f4e9ebf8b234b31b04ee32ad66 Mon Sep 17 00:00:00 2001
From: Daniel Kurowski <daniel.kurowski@grifart.cz>
Date: Mon, 23 Jan 2023 10:39:29 +0100
Subject: [PATCH] make deprecated enum abstract

---
 src/Event/Response/Food.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Event/Response/Food.php b/src/Event/Response/Food.php
index b3586ef..56d8ec1 100644
--- a/src/Event/Response/Food.php
+++ b/src/Event/Response/Food.php
@@ -12,7 +12,7 @@
  * @method static Food MEAT()
  * @method static Food VEGAN()
  */
-class Food extends Enum
+abstract class Food extends Enum
 {
 	use AutoInstances;