| 1 | <?php |
||
| 12 | class HunterPetValueObject |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $name; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | private $creature; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $slot; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @var SpecValueObject |
||
| 31 | */ |
||
| 32 | private $hunterPetSpecValueObject; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var string |
||
| 36 | */ |
||
| 37 | private $calcSpec; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var string |
||
| 41 | */ |
||
| 42 | private $familyId; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var string |
||
| 46 | */ |
||
| 47 | private $familyName; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * HunterPetValueObject constructor. |
||
| 51 | * @param string $name |
||
| 52 | * @param string $creature |
||
| 53 | * @param string $slot |
||
| 54 | * @param SpecValueObject $hunterPetSpecValueObject |
||
| 55 | * @param string $calcSpec |
||
| 56 | * @param string $familyId |
||
| 57 | * @param string $familyName |
||
| 58 | */ |
||
| 59 | public function __construct( |
||
| 76 | |||
| 77 | /** |
||
| 78 | * @return string |
||
| 79 | */ |
||
| 80 | public function getName() |
||
| 84 | |||
| 85 | /** |
||
| 86 | * @return string |
||
| 87 | */ |
||
| 88 | public function getCreature() |
||
| 92 | |||
| 93 | /** |
||
| 94 | * @return string |
||
| 95 | */ |
||
| 96 | public function getSlot() |
||
| 100 | |||
| 101 | /** |
||
| 102 | * @return SpecValueObject |
||
| 103 | */ |
||
| 104 | public function getHunterPetSpecValueObject() |
||
| 108 | |||
| 109 | /** |
||
| 110 | * @return string |
||
| 111 | */ |
||
| 112 | public function getCalcSpec() |
||
| 116 | |||
| 117 | /** |
||
| 118 | * @return string |
||
| 119 | */ |
||
| 120 | public function getFamilyId() |
||
| 124 | |||
| 125 | /** |
||
| 126 | * @return string |
||
| 127 | */ |
||
| 128 | public function getFamilyName() |
||
| 132 | } |
||
| 133 |