From 22d28908d9a462bfe910935c1bb78162192f9ea6 Mon Sep 17 00:00:00 2001 From: Ruben Date: Sat, 10 Sep 2016 01:11:36 +0100 Subject: [PATCH] Add Achievement class --- src/Models/Achievement.php | 65 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/Models/Achievement.php diff --git a/src/Models/Achievement.php b/src/Models/Achievement.php new file mode 100644 index 0000000..4d1294e --- /dev/null +++ b/src/Models/Achievement.php @@ -0,0 +1,65 @@ +id = $id; + } + + + + /** + * Gets the Title of achievement. + * + * @return string + */ + public function getTitle() + { + return $this->title; + } + + /** + * Sets the Title of achievement. + * + * @param string $title the title + * + * @return self + */ + public function setTitle($title) + { + $this->title = $title; + + return $this; + } +} \ No newline at end of file