Total Complexity | 7 |
Total Lines | 51 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class PlayerStrategy extends AbstractTableManager implements TableStrategyInterface |
||
12 | { |
||
13 | |||
14 | public function supports(string $name): bool |
||
15 | { |
||
16 | return $name === self::TYPE_PLAYER; |
||
17 | } |
||
18 | |||
19 | |||
20 | /** |
||
21 | * @throws Exception |
||
22 | */ |
||
23 | public function process(): void |
||
48 | } |
||
49 | |||
50 | /** |
||
51 | * @throws Exception |
||
52 | */ |
||
53 | public function purge(): void |
||
62 | } |
||
63 | } |
||
64 |
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.