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

Return list of index names.
public getIndexNames ( ) : array
Результат array List of index names
Пример #1
0
 /**
  * Checks if the given index is already created
  *
  * @return bool True if index exists
  */
 public function exists()
 {
     $cluster = new Cluster($this->getClient());
     return in_array($this->getName(), $cluster->getIndexNames());
 }