Total Complexity | 5 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | class GameStrategy extends AbstractTableManager implements TableStrategyInterface |
||
15 | { |
||
16 | public function supports(string $name): bool |
||
17 | { |
||
18 | return $name === self::TYPE_GAME; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @throws OptimisticLockException |
||
23 | * @throws Exception |
||
24 | */ |
||
25 | public function process(): void |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @throws Exception |
||
52 | */ |
||
53 | public function purge(): void |
||
64 |