| Total Complexity | 6 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 33.33% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class SecretKnowledge implements Talent, \Stringable |
||
| 11 | { |
||
| 12 | 1 | public function __construct( |
|
| 13 | private Ascension $ascension, |
||
| 14 | 1 | ) {} |
|
| 15 | |||
| 16 | 1 | public function getAscension(): Ascension |
|
| 17 | { |
||
| 18 | 1 | return $this->ascension; |
|
| 19 | } |
||
| 20 | |||
| 21 | public static function getName(): string |
||
| 24 | } |
||
| 25 | |||
| 26 | public static function getDescription(): string |
||
| 29 | } |
||
| 30 | |||
| 31 | public static function getRequiredTalentPoints(): TalentPoints |
||
| 34 | } |
||
| 35 | |||
| 36 | public function __toString(): string |
||
| 39 | } |
||
| 40 | } |
||
| 41 |