From 8d58c7de92c75e826a8399ec7914b463f8916dcd Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Sun, 16 Jan 2022 12:22:04 +0100 Subject: Add categories for cards and relate them to meta --- src/Model/Category.php | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 src/Model/Category.php (limited to 'src/Model/Category.php') diff --git a/src/Model/Category.php b/src/Model/Category.php new file mode 100644 index 0000000..84d12a3 --- /dev/null +++ b/src/Model/Category.php @@ -0,0 +1,61 @@ +name = $name; + $this->cards = new ArrayCollection(); + $this->meta = new ArrayCollection(); + } +} + -- cgit v1.2.3