| Total Complexity | 4 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class TableManager |
||
| 11 | { |
||
| 12 | /** @var TableStrategyInterface[] */ |
||
| 13 | private array $strategies = []; |
||
| 14 | |||
| 15 | |||
| 16 | public function getStrategy(string $name): TableStrategyInterface |
||
| 25 | } |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param TableStrategyInterface $strategy |
||
| 29 | */ |
||
| 30 | public function addStrategy(TableStrategyInterface $strategy): void |
||
| 35 |