| 1 | <?php |
||
| 13 | class TalentsValueObject |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var int |
||
| 17 | */ |
||
| 18 | private $tier; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var int |
||
| 22 | */ |
||
| 23 | private $column; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var SpellValueObject |
||
| 27 | */ |
||
| 28 | private $spell; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var SpecValueObject |
||
| 32 | */ |
||
| 33 | private $spec; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * TalentsValueObject constructor. |
||
| 37 | * @param int $tier |
||
| 38 | * @param int $column |
||
| 39 | * @param SpellValueObject $spell |
||
| 40 | * @param SpecValueObject $spec |
||
| 41 | */ |
||
| 42 | public function __construct( |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @return int |
||
| 57 | */ |
||
| 58 | public function getTier() |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @return int |
||
| 65 | */ |
||
| 66 | public function getColumn() |
||
| 70 | |||
| 71 | /** |
||
| 72 | * @return SpellValueObject |
||
| 73 | */ |
||
| 74 | public function getSpell() |
||
| 78 | |||
| 79 | /** |
||
| 80 | * @return SpecValueObject |
||
| 81 | */ |
||
| 82 | public function getSpec() |
||
| 86 | } |
||
| 87 |