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
commitb87c1467c6884910bb7ee28a2f92db284e8af84d (patch)
tree4aed6cc46556dd1d32bf8394f7b8f4bcb4255355 /app/Models/BookmarkCategory.php
parent606c641558e7cda9bdc7bef6fefdc7b50bb946c1 (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;
- }
-}