Total Complexity | 5 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class TeamStrategy extends AbstractTableManager implements TableStrategyInterface |
||
12 | { |
||
13 | public function supports(string $name): bool |
||
14 | { |
||
15 | return $name === self::TYPE_TEAM; |
||
16 | } |
||
17 | |||
18 | |||
19 | /** |
||
20 | * @throws Exception |
||
21 | */ |
||
22 | public function process(): void |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @throws Exception |
||
45 | */ |
||
46 | public function purge(): void |
||
57 |
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.