Smile\ElasticsuiteCore\Index\IndexSettings::getIndexConfig PHP Method

getIndexConfig() public method

{@inheritDoc}
public getIndexConfig ( $indexIdentifier )
    public function getIndexConfig($indexIdentifier)
    {
        $indicesConfig = $this->getIndicesConfig();
        if (!isset($indicesConfig[$indexIdentifier])) {
            throw new \LogicException("No indices found with identifier {$indexIdentifier}");
        }
        return $indicesConfig[$indexIdentifier];
    }