Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 33.33% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | #[Immutable] |
||
12 | final class SecretKnowledge implements Talent |
||
13 | { |
||
14 | 6 | public function __construct( |
|
15 | private Ascension $ascension, |
||
16 | 6 | ) {} |
|
17 | |||
18 | 4 | public function getAscension(): Ascension |
|
19 | { |
||
20 | 4 | return $this->ascension; |
|
21 | } |
||
22 | |||
23 | public static function getName(): string |
||
24 | { |
||
25 | return 'Secret Knowledge'; |
||
26 | } |
||
27 | |||
28 | public static function getDescription(): string |
||
31 | } |
||
32 | |||
33 | public static function getRequiredTalentPoints(): TalentPoints |
||
36 | } |
||
37 | |||
38 | public function __toString(): string |
||
41 | } |
||
42 | } |
||
43 |