1 | <?php |
||
12 | class TalentValueObject |
||
13 | { |
||
14 | /** |
||
15 | * @var bool |
||
16 | */ |
||
17 | private $selected; |
||
18 | |||
19 | /** |
||
20 | * @var TalentsValueObject[] |
||
21 | */ |
||
22 | private $talentsValueObject; |
||
23 | |||
24 | /** |
||
25 | * @var SpecValueObject |
||
26 | */ |
||
27 | private $specValueObject; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $calcTalent; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | private $calcSpec; |
||
38 | |||
39 | /** |
||
40 | * TalentValueObject constructor. |
||
41 | * @param bool $selected |
||
42 | * @param TalentsValueObject[] $talentsValueObject |
||
43 | * @param SpecValueObject $specValueObject |
||
44 | * @param string $calcTalent |
||
45 | * @param string $calcSpec |
||
46 | */ |
||
47 | public function __construct( |
||
60 | |||
61 | /** |
||
62 | * @return bool |
||
63 | */ |
||
64 | public function isSelected() |
||
68 | |||
69 | /** |
||
70 | * @return TalentsValueObject[] |
||
71 | */ |
||
72 | public function getTalentsValueObject() |
||
76 | |||
77 | /** |
||
78 | * @return SpecValueObject |
||
79 | */ |
||
80 | public function getSpecValueObject() |
||
84 | |||
85 | /** |
||
86 | * @return string |
||
87 | */ |
||
88 | public function getCalcTalent() |
||
92 | |||
93 | /** |
||
94 | * @return string |
||
95 | */ |
||
96 | public function getCalcSpec() |
||
100 | } |
||
101 |