aboutsummaryrefslogtreecommitdiff
path: root/app/Models/ProjectCategory.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Models/ProjectCategory.php')
-rw-r--r--app/Models/ProjectCategory.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Models/ProjectCategory.php b/app/Models/ProjectCategory.php
deleted file mode 100644
index 3b15f51..0000000
--- a/app/Models/ProjectCategory.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-namespace App\Models;
-
-class ProjectCategory {
- /**
- * @var string The name of the bookmark category.
- */
- public $name;
-
- /**
- * @var array An array of Project objects.
- */
- public $projects;
-
- /**
- * BookmarkCategory constructor.
- * @param string $name The name of the bookmark category.
- * @param array $projects An array of Project objects.
- */
- public function __construct($name, $projects = array()) {
- $this->name = $name;
- $this->projects = $projects;
- }
-}