yii\sphinx\Schema::initIndexesInfo PHP Метод

initIndexesInfo() защищенный Метод

Initializes information about name and type of all index in the Sphinx.
protected initIndexesInfo ( )
    protected function initIndexesInfo()
    {
        $this->_indexNames = [];
        $this->_indexTypes = [];
        $indexes = $this->findIndexes();
        foreach ($indexes as $index) {
            $indexName = $index['Index'];
            $this->_indexNames[] = $indexName;
            $this->_indexTypes[$indexName] = $index['Type'];
        }
    }