| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 38.46% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | #[Immutable] |
||
| 12 | 1 | final class SecretKnowledge implements Talent |
|
| 13 | { |
||
| 14 | 1 | public function __construct( |
|
| 15 | private Ascension $ascension, |
||
| 16 | 1 | ) {} |
|
| 17 | |||
| 18 | 1 | public function getAscension(): Ascension |
|
| 19 | { |
||
| 20 | 1 | 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 |