| Total Complexity | 2 | 
| Total Lines | 20 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 17 | final class RepositoryManager | ||
| 18 | { | ||
| 19 | /** | ||
| 20 | * @var FunnelRepositoryInterface[] | ||
| 21 | */ | ||
| 22 | private array $repositories = []; | ||
| 23 | |||
| 24 | public function addRepository(FunnelRepositoryInterface $repository): self | ||
| 29 | } | ||
| 30 | |||
| 31 | /** | ||
| 32 | * @return FunnelRepositoryInterface[] | ||
| 33 | */ | ||
| 34 | public function getRepositories(): array | ||
| 39 |