aboutsummaryrefslogtreecommitdiff
path: root/app/Models/BookmarkCategory.php
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-06-14 23:35:47 +0100
committerFrankie B <git@diskfloppy.me>2023-06-14 23:35:47 +0100
commitc7a1b41a19c9091c9d09a70d7003eaa28813eee1 (patch)
tree4aed6cc46556dd1d32bf8394f7b8f4bcb4255355 /app/Models/BookmarkCategory.php
parente5ac640025d24b14e3a24632a768c789b6085a7f (diff)
fix: make configs serializable
Diffstat (limited to 'app/Models/BookmarkCategory.php')
-rw-r--r--app/Models/BookmarkCategory.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Models/BookmarkCategory.php b/app/Models/BookmarkCategory.php
deleted file mode 100644
index 10c031a..0000000
--- a/app/Models/BookmarkCategory.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-namespace App\Models;
-
-class BookmarkCategory {
- /**
- * @var string The name of the bookmark category.
- */
- public $name;
-
- /**
- * @var array An array of Bookmark objects.
- */
- public $bookmarks;
-
- /**
- * BookmarkCategory constructor.
- * @param string $name The name of the bookmark category.
- * @param array $bookmarks An array of Bookmark objects.
- */
- public function __construct($name, $bookmarks = array()) {
- $this->name = $name;
- $this->bookmarks = $bookmarks;
- }
-}