| 1 | <?php |
||
| 10 | class RaidValueObject |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $name; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var int |
||
| 19 | */ |
||
| 20 | private $lfr; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var int |
||
| 24 | */ |
||
| 25 | private $normal; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var int |
||
| 29 | */ |
||
| 30 | private $heroic; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var int |
||
| 34 | */ |
||
| 35 | private $mythic; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @var int |
||
| 39 | */ |
||
| 40 | private $id; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @var BossValueObject[] |
||
| 44 | */ |
||
| 45 | private $bosses; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * RaidValueObject constructor. |
||
| 49 | * @param string $name |
||
| 50 | * @param int $lfr |
||
| 51 | * @param int $normal |
||
| 52 | * @param int $heroic |
||
| 53 | * @param int $mythic |
||
| 54 | * @param int $id |
||
| 55 | * @param BossValueObject[] $bosses |
||
| 56 | */ |
||
| 57 | public function __construct( |
||
| 74 | |||
| 75 | /** |
||
| 76 | * @return string |
||
| 77 | */ |
||
| 78 | public function getName() |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @return int |
||
| 85 | */ |
||
| 86 | public function getLfr() |
||
| 90 | |||
| 91 | /** |
||
| 92 | * @return int |
||
| 93 | */ |
||
| 94 | public function getNormal() |
||
| 98 | |||
| 99 | /** |
||
| 100 | * @return int |
||
| 101 | */ |
||
| 102 | public function getHeroic() |
||
| 106 | |||
| 107 | /** |
||
| 108 | * @return int |
||
| 109 | */ |
||
| 110 | public function getMythic() |
||
| 114 | |||
| 115 | /** |
||
| 116 | * @return int |
||
| 117 | */ |
||
| 118 | public function getId() |
||
| 122 | |||
| 123 | /** |
||
| 124 | * @return BossValueObject[] |
||
| 125 | */ |
||
| 126 | public function getBosses() |
||
| 130 | } |
||
| 131 |