1 | <?php |
||
12 | class FeedBosskillValueObject |
||
13 | { |
||
14 | /** |
||
15 | * @var string |
||
16 | */ |
||
17 | private $type; |
||
18 | |||
19 | /** |
||
20 | * @var int |
||
21 | */ |
||
22 | private $timestamp; |
||
23 | |||
24 | /** |
||
25 | * @var AchievementValueObject |
||
26 | */ |
||
27 | private $achievement; |
||
28 | |||
29 | /** |
||
30 | * @var bool |
||
31 | */ |
||
32 | private $featOfStrength; |
||
33 | |||
34 | /** |
||
35 | * @var CriteriaValueObject |
||
36 | */ |
||
37 | private $criteria; |
||
38 | |||
39 | /** |
||
40 | * @var int |
||
41 | */ |
||
42 | private $quantity; |
||
43 | |||
44 | /** |
||
45 | * @var string |
||
46 | */ |
||
47 | private $name; |
||
48 | |||
49 | /** |
||
50 | * BosskillValueObject constructor. |
||
51 | * @param string $type |
||
52 | * @param int $timestamp |
||
53 | * @param AchievementValueObject $achievement |
||
54 | * @param bool $featOfStrength |
||
55 | * @param CriteriaValueObject $criteria |
||
56 | * @param int $quantity |
||
57 | * @param string $name |
||
58 | */ |
||
59 | public function __construct( |
||
76 | |||
77 | /** |
||
78 | * @return string |
||
79 | */ |
||
80 | public function getType() |
||
84 | |||
85 | /** |
||
86 | * @return int |
||
87 | */ |
||
88 | public function getTimestamp() |
||
92 | |||
93 | /** |
||
94 | * @return AchievementValueObject |
||
95 | */ |
||
96 | public function getAchievement() |
||
100 | |||
101 | /** |
||
102 | * @return bool |
||
103 | */ |
||
104 | public function isFeatOfStrength() |
||
108 | |||
109 | /** |
||
110 | * @return CriteriaValueObject |
||
111 | */ |
||
112 | public function getCriteria() |
||
116 | |||
117 | /** |
||
118 | * @return int |
||
119 | */ |
||
120 | public function getQuantity() |
||
124 | |||
125 | /** |
||
126 | * @return string |
||
127 | */ |
||
128 | public function getName() |
||
132 | } |
||
133 |