Total Complexity | 5 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class GameStrategy extends AbstractTableManager implements TableStrategyInterface |
||
12 | { |
||
13 | |||
14 | public function supports(string $name): bool |
||
15 | { |
||
16 | return $name === self::TYPE_GAME; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * @throws OptimisticLockException |
||
21 | * @throws Exception |
||
22 | */ |
||
23 | public function process(): void |
||
46 | } |
||
47 | |||
48 | /** |
||
49 | * @throws Exception |
||
50 | */ |
||
51 | public function purge(): void |
||
63 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.