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

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

Loads the metadata for the specified index.
protected loadIndexSchema ( string $name ) : IndexSchema | null
$name string index name
Результат IndexSchema | null driver dependent index metadata. `null` - if the index does not exist.
    protected function loadIndexSchema($name)
    {
        $index = new IndexSchema();
        $this->resolveIndexNames($index, $name);
        $this->resolveIndexType($index);
        if ($this->findColumns($index)) {
            return $index;
        }
        return null;
    }