1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Kubinashi\BattlenetApi\WorldOfWarcraft\AchievementApi\Achievement\Model; |
4
|
|
|
|
5
|
|
|
use Kubinashi\BattlenetApi\WorldOfWarcraft\Shared\Criteria\Model\CriteriaValueObject; |
6
|
|
|
use Kubinashi\BattlenetApi\WorldOfWarcraft\Shared\RewardItem\Model\RewardItemValueObject; |
7
|
|
|
|
8
|
|
|
/** |
9
|
|
|
* @author Willy Reiche |
10
|
|
|
* @since 2017-12-06 |
11
|
|
|
* @version 1.0 |
12
|
|
|
*/ |
13
|
|
|
class AchievementValueObject |
14
|
|
|
{ |
15
|
|
|
/** |
16
|
|
|
* @var int |
17
|
|
|
*/ |
18
|
|
|
private $id; |
19
|
|
|
/** |
20
|
|
|
* @var string |
21
|
|
|
*/ |
22
|
|
|
private $title; |
23
|
|
|
/** |
24
|
|
|
* @var int |
25
|
|
|
*/ |
26
|
|
|
private $points; |
27
|
|
|
/** |
28
|
|
|
* @var string |
29
|
|
|
*/ |
30
|
|
|
private $description; |
31
|
|
|
/** |
32
|
|
|
* @var string |
33
|
|
|
*/ |
34
|
|
|
private $reward; |
35
|
|
|
/** |
36
|
|
|
* @var RewardItemValueObject[] |
37
|
|
|
*/ |
38
|
|
|
private $rewardItems; |
39
|
|
|
/** |
40
|
|
|
* @var string |
41
|
|
|
*/ |
42
|
|
|
private $icon; |
43
|
|
|
/** |
44
|
|
|
* @var CriteriaValueObject[] |
45
|
|
|
*/ |
46
|
|
|
private $criteria; |
47
|
|
|
/** |
48
|
|
|
* @var bool |
49
|
|
|
*/ |
50
|
|
|
private $accountWide; |
51
|
|
|
/** |
52
|
|
|
* @var int |
53
|
|
|
*/ |
54
|
|
|
private $factionId; |
55
|
|
|
|
56
|
|
|
/** |
57
|
|
|
* AchievementValueObject constructor. |
58
|
|
|
* @param int $id |
59
|
|
|
* @param string $title |
60
|
|
|
* @param int $points |
61
|
|
|
* @param string $description |
62
|
|
|
* @param string $reward |
63
|
|
|
* @param RewardItemValueObject[] $rewardItems |
64
|
|
|
* @param string $icon |
65
|
|
|
* @param CriteriaValueObject[] $criteria |
66
|
|
|
* @param bool $accountWide |
67
|
|
|
* @param int $factionId |
68
|
|
|
*/ |
69
|
|
View Code Duplication |
public function __construct( |
|
|
|
|
70
|
|
|
$id, |
71
|
|
|
$title, |
72
|
|
|
$points, |
73
|
|
|
$description, |
74
|
|
|
$reward, |
75
|
|
|
$rewardItems, |
76
|
|
|
$icon, |
77
|
|
|
$criteria, |
78
|
|
|
$accountWide, |
79
|
|
|
$factionId |
80
|
|
|
) { |
81
|
|
|
$this->id = $id; |
82
|
|
|
$this->title = $title; |
83
|
|
|
$this->points = $points; |
84
|
|
|
$this->description = $description; |
85
|
|
|
$this->reward = $reward; |
86
|
|
|
$this->rewardItems = $rewardItems; |
87
|
|
|
$this->icon = $icon; |
88
|
|
|
$this->criteria = $criteria; |
89
|
|
|
$this->accountWide = $accountWide; |
90
|
|
|
$this->factionId = $factionId; |
91
|
|
|
} |
92
|
|
|
|
93
|
|
|
/** |
94
|
|
|
* @return int |
95
|
|
|
*/ |
96
|
|
|
public function getId() |
97
|
|
|
{ |
98
|
|
|
return $this->id; |
99
|
|
|
} |
100
|
|
|
|
101
|
|
|
/** |
102
|
|
|
* @return string |
103
|
|
|
*/ |
104
|
|
|
public function getTitle() |
105
|
|
|
{ |
106
|
|
|
return $this->title; |
107
|
|
|
} |
108
|
|
|
|
109
|
|
|
/** |
110
|
|
|
* @return int |
111
|
|
|
*/ |
112
|
|
|
public function getPoints() |
113
|
|
|
{ |
114
|
|
|
return $this->points; |
115
|
|
|
} |
116
|
|
|
|
117
|
|
|
/** |
118
|
|
|
* @return string |
119
|
|
|
*/ |
120
|
|
|
public function getDescription() |
121
|
|
|
{ |
122
|
|
|
return $this->description; |
123
|
|
|
} |
124
|
|
|
|
125
|
|
|
/** |
126
|
|
|
* @return string |
127
|
|
|
*/ |
128
|
|
|
public function getReward() |
129
|
|
|
{ |
130
|
|
|
return $this->reward; |
131
|
|
|
} |
132
|
|
|
|
133
|
|
|
/** |
134
|
|
|
* @return RewardItemValueObject[] |
135
|
|
|
*/ |
136
|
|
|
public function getRewardItems() |
137
|
|
|
{ |
138
|
|
|
return $this->rewardItems; |
139
|
|
|
} |
140
|
|
|
|
141
|
|
|
/** |
142
|
|
|
* @return string |
143
|
|
|
*/ |
144
|
|
|
public function getIcon() |
145
|
|
|
{ |
146
|
|
|
return $this->icon; |
147
|
|
|
} |
148
|
|
|
|
149
|
|
|
/** |
150
|
|
|
* @return CriteriaValueObject[] |
151
|
|
|
*/ |
152
|
|
|
public function getCriteria() |
153
|
|
|
{ |
154
|
|
|
return $this->criteria; |
155
|
|
|
} |
156
|
|
|
|
157
|
|
|
/** |
158
|
|
|
* @return bool |
159
|
|
|
*/ |
160
|
|
|
public function isAccountWide() |
161
|
|
|
{ |
162
|
|
|
return $this->accountWide; |
163
|
|
|
} |
164
|
|
|
|
165
|
|
|
/** |
166
|
|
|
* @return int |
167
|
|
|
*/ |
168
|
|
|
public function getFactionId() |
169
|
|
|
{ |
170
|
|
|
return $this->factionId; |
171
|
|
|
} |
172
|
|
|
} |
173
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.