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