1 | <?php |
||
10 | class SecondaryStatValueObject |
||
11 | { |
||
12 | /** |
||
13 | * @var float |
||
14 | */ |
||
15 | private $speedRating; |
||
16 | /** |
||
17 | * @var int |
||
18 | */ |
||
19 | private $speedRatingBonus; |
||
20 | /** |
||
21 | * @var float |
||
22 | */ |
||
23 | private $crit; |
||
24 | /** |
||
25 | * @var int |
||
26 | */ |
||
27 | private $critRating; |
||
28 | /** |
||
29 | * @var float |
||
30 | */ |
||
31 | private $haste; |
||
32 | /** |
||
33 | * @var int |
||
34 | */ |
||
35 | private $hasteRating; |
||
36 | /** |
||
37 | * @var float |
||
38 | */ |
||
39 | private $hasteRatingPercent; |
||
40 | /** |
||
41 | * @var float |
||
42 | */ |
||
43 | private $mastery; |
||
44 | /** |
||
45 | * @var int |
||
46 | */ |
||
47 | private $masteryRating; |
||
48 | |||
49 | /** |
||
50 | * SecondaryStatValueObject constructor. |
||
51 | * @param float $speedRating |
||
52 | * @param int $speedRatingBonus |
||
53 | * @param float $crit |
||
54 | * @param int $critRating |
||
55 | * @param float $haste |
||
56 | * @param int $hasteRating |
||
57 | * @param float $hasteRatingPercent |
||
58 | * @param float $mastery |
||
59 | * @param int $masteryRating |
||
60 | */ |
||
61 | public function __construct( |
||
82 | |||
83 | /** |
||
84 | * @return float |
||
85 | */ |
||
86 | public function getSpeedRating() |
||
90 | |||
91 | /** |
||
92 | * @return int |
||
93 | */ |
||
94 | public function getSpeedRatingBonus() |
||
98 | |||
99 | /** |
||
100 | * @return float |
||
101 | */ |
||
102 | public function getCrit() |
||
106 | |||
107 | /** |
||
108 | * @return int |
||
109 | */ |
||
110 | public function getCritRating() |
||
114 | |||
115 | /** |
||
116 | * @return float |
||
117 | */ |
||
118 | public function getHaste() |
||
122 | |||
123 | /** |
||
124 | * @return int |
||
125 | */ |
||
126 | public function getHasteRating() |
||
130 | |||
131 | /** |
||
132 | * @return float |
||
133 | */ |
||
134 | public function getHasteRatingPercent() |
||
138 | |||
139 | /** |
||
140 | * @return float |
||
141 | */ |
||
142 | public function getMastery() |
||
146 | |||
147 | /** |
||
148 | * @return int |
||
149 | */ |
||
150 | public function getMasteryRating() |
||
154 | } |
||
155 |