Total Complexity | 5 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class TeamStrategy extends AbstractTableManager implements TableStrategyInterface |
||
14 | { |
||
15 | public function supports(string $name): bool |
||
16 | { |
||
17 | return $name === self::TYPE_TEAM; |
||
18 | } |
||
19 | |||
20 | |||
21 | /** |
||
22 | * @throws Exception |
||
23 | */ |
||
24 | public function process(): void |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @throws Exception |
||
47 | */ |
||
48 | public function purge(): void |
||
59 |