| 1 | <?php |
||
| 10 | class TalentValueObject |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | private $selected; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var TalentsValueObject[] |
||
| 19 | */ |
||
| 20 | private $talentsValueObject; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var SpecValueObject |
||
| 24 | */ |
||
| 25 | private $specValueObject; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | private $calcTalent; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | private $calcSpec; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * TalentValueObject constructor. |
||
| 39 | * @param bool $selected |
||
| 40 | * @param TalentsValueObject[] $talentsValueObject |
||
| 41 | * @param SpecValueObject $specValueObject |
||
| 42 | * @param string $calcTalent |
||
| 43 | * @param string $calcSpec |
||
| 44 | */ |
||
| 45 | public function __construct( |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return bool |
||
| 61 | */ |
||
| 62 | public function isSelected() |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return TalentsValueObject[] |
||
| 69 | */ |
||
| 70 | public function getTalentsValueObject() |
||
| 74 | |||
| 75 | /** |
||
| 76 | * @return SpecValueObject |
||
| 77 | */ |
||
| 78 | public function getSpecValueObject() |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @return string |
||
| 85 | */ |
||
| 86 | public function getCalcTalent() |
||
| 90 | |||
| 91 | /** |
||
| 92 | * @return string |
||
| 93 | */ |
||
| 94 | public function getCalcSpec() |
||
| 98 | } |
||
| 99 |