| Total Complexity | 3 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 7 | final class NotYourTurn extends RuntimeException |
||
| 8 | { |
||
| 9 | public static function cannotPlayCards(): self |
||
| 12 | } |
||
| 13 | |||
| 14 | public static function cannotDefend(): self |
||
| 15 | { |
||
| 16 | return new self('Cannot block at this time'); |
||
| 17 | } |
||
| 18 | |||
| 19 | public static function cannotAttack(): self |
||
| 22 | } |
||
| 23 | } |
||
| 24 |