diff options
Diffstat (limited to 'app/Models/Bookmark.php')
-rw-r--r-- | app/Models/Bookmark.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/app/Models/Bookmark.php b/app/Models/Bookmark.php deleted file mode 100644 index 3396242..0000000 --- a/app/Models/Bookmark.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php -namespace App\Models; - -class Bookmark { - /** - * @var string The name of the bookmark. - */ - public $name; - - /** - * @var string The URL of the bookmark. - */ - public $url; - - /** - * @var string The description of the bookmark. - */ - public $description; - - /** - * Bookmark constructor. - * @param string $name The name of the bookmark. - * @param string $url The URL of the bookmark. - * @param string $description The description of the bookmark. - */ - public function __construct($name, $url, $description) { - $this->name = $name; - $this->url = $url; - $this->description = $description; - } -} |