configData = $configData; } /** * Get indexers list * * @return array[] */ public function getIndexers() { return $this->configData->get(); } /** * Get indexer by ID * * @param string $indexerId * @return array */ public function getIndexer($indexerId) { return $this->configData->get($indexerId) ?: []; } }