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