Total Complexity | 6 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 66.67% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class Bite implements NaturalAttack, Talent |
||
14 | { |
||
15 | 1 | public function getEffects(): EffectCollection |
|
16 | { |
||
17 | 1 | return new EffectCollection([]); |
|
18 | } |
||
19 | |||
20 | 1 | public function getDamage(): Damage |
|
21 | { |
||
22 | 1 | return new Damage(5); |
|
23 | } |
||
24 | |||
25 | 1 | public static function getName(): string |
|
26 | { |
||
27 | 1 | return 'Bite'; |
|
28 | } |
||
29 | |||
30 | public static function getDescription(): string |
||
33 | } |
||
34 | |||
35 | public static function getRequiredTalentPoints(): TalentPoints |
||
38 | } |
||
39 | |||
40 | 1 | public function __toString(): string |
|
43 | } |
||
44 | } |
||
45 |