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

getIndexNames() публичный Метод

Returns all index names in the Sphinx.
public getIndexNames ( boolean $refresh = false ) : string[]
$refresh boolean whether to fetch the latest available index names. If this is false, index names fetched previously (if available) will be returned.
Результат string[] all index names in the Sphinx.
    public function getIndexNames($refresh = false)
    {
        if (!isset($this->_indexNames) || $refresh) {
            $this->initIndexesInfo();
        }
        return $this->_indexNames;
    }