| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | final class DoubleClaw implements NaturalAttack, Talent |
||
| 14 | { |
||
| 15 | 1 | public function getEffects(): EffectCollection |
|
| 16 | { |
||
| 17 | 1 | return new EffectCollection([]); |
|
| 18 | } |
||
| 19 | |||
| 20 | public function getDamage(): Damage |
||
| 23 | } |
||
| 24 | |||
| 25 | 1 | public static function getName(): string |
|
| 26 | { |
||
| 27 | 1 | return 'Double Claw'; |
|
| 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 |