| 1 | <?php |
||
| 17 | class ConfigManager implements ManagerInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var IndexConfig[] |
||
| 21 | */ |
||
| 22 | private $indexes = []; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param Source\SourceInterface[] $sources |
||
| 26 | */ |
||
| 27 | 9 | public function __construct(array $sources) |
|
| 33 | |||
| 34 | 8 | public function getIndexConfiguration(string $indexName): IndexConfigInterface |
|
| 42 | |||
| 43 | 2 | public function getIndexNames(): array |
|
| 47 | |||
| 48 | 8 | public function hasIndexConfiguration(string $indexName): bool |
|
| 52 | } |
||
| 53 |