diff options
author | Frankie B <git@diskfloppy.me> | 2023-06-14 23:35:47 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-06-14 23:35:47 +0100 |
commit | c7a1b41a19c9091c9d09a70d7003eaa28813eee1 (patch) | |
tree | 4aed6cc46556dd1d32bf8394f7b8f4bcb4255355 /app/Models/Project.php | |
parent | e5ac640025d24b14e3a24632a768c789b6085a7f (diff) |
fix: make configs serializable
Diffstat (limited to 'app/Models/Project.php')
-rw-r--r-- | app/Models/Project.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/app/Models/Project.php b/app/Models/Project.php deleted file mode 100644 index 183877e..0000000 --- a/app/Models/Project.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php -namespace App\Models; - -class Project { - /** - * @var string The name of the project. - */ - public $name; - - /** - * @var string The description of the project. - */ - public $description; - - /** - * @var string The URL of the project. - */ - public $url; - - /** - * @var array Languages used in the project. - */ - public $languages; - - /** - * BookmarkCategory constructor. - * @param string $name The name of the project. - * @param string $description The description of the project. - * @param string The URL of the project. - * @param array $languages Languages used in the project.s - */ - public function __construct($name, $description, $url, $languages = array()) { - $this->name = $name; - $this->description = $description; - $this->url = $url; - $this->languages = $languages; - } -} |