1 | <?php |
||
12 | class Category extends AbstractAchievementEntity |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $title; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | protected $description; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | protected $image; |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getTitle() |
||
36 | |||
37 | /** |
||
38 | * @param string $title |
||
39 | * @return self |
||
40 | */ |
||
41 | public function setTitle($title) |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getDescription() |
||
55 | |||
56 | /** |
||
57 | * @param string $description |
||
58 | * @return self |
||
59 | */ |
||
60 | public function setDescription($description) |
||
66 | |||
67 | /** |
||
68 | * @return string |
||
69 | */ |
||
70 | public function getImage() |
||
74 | |||
75 | /** |
||
76 | * @param string $image |
||
77 | * @return self |
||
78 | */ |
||
79 | public function setImage($image) |
||
85 | } |
||
86 |