diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-14 23:24:47 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-06-14 23:24:47 +0100 |
commit | e5ac640025d24b14e3a24632a768c789b6085a7f (patch) | |
tree | 8cbd3378fdeae88bb7db628749b5862e49aa88d3 /app | |
parent | 20e394e9f27aab0cb522f84f3d636b279ecb863e (diff) |
fix: class errors
Diffstat (limited to 'app')
-rw-r--r-- | app/Models/Bookmark.php | 2 | ||||
-rw-r--r-- | app/Models/BookmarkCategory.php | 2 | ||||
-rw-r--r-- | app/Models/Project.php | 2 | ||||
-rw-r--r-- | app/Models/ProjectCategory.php | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/app/Models/Bookmark.php b/app/Models/Bookmark.php index f679205..3396242 100644 --- a/app/Models/Bookmark.php +++ b/app/Models/Bookmark.php @@ -1,4 +1,6 @@ <?php +namespace App\Models; + class Bookmark { /** * @var string The name of the bookmark. diff --git a/app/Models/BookmarkCategory.php b/app/Models/BookmarkCategory.php index 0f2335d..10c031a 100644 --- a/app/Models/BookmarkCategory.php +++ b/app/Models/BookmarkCategory.php @@ -1,4 +1,6 @@ <?php +namespace App\Models; + class BookmarkCategory { /** * @var string The name of the bookmark category. diff --git a/app/Models/Project.php b/app/Models/Project.php index 0b90828..183877e 100644 --- a/app/Models/Project.php +++ b/app/Models/Project.php @@ -1,4 +1,6 @@ <?php +namespace App\Models; + class Project { /** * @var string The name of the project. diff --git a/app/Models/ProjectCategory.php b/app/Models/ProjectCategory.php index babe265..3b15f51 100644 --- a/app/Models/ProjectCategory.php +++ b/app/Models/ProjectCategory.php @@ -1,4 +1,6 @@ <?php +namespace App\Models; + class ProjectCategory { /** * @var string The name of the bookmark category. |