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

Delete an index.
public deleteIndex ( string $indexName ) : mixed
$indexName string the name of index to delete
Результат mixed an object containing a "deletedAt" attribute
 public function deleteIndex($index_name)
 {
     $this->checkClient(__FUNCTION__);
     $this->client->deleteIndex($index_name);
 }
Пример #2
0
 public function deleteIndex($index_name)
 {
     $this->client->deleteIndex($index_name);
 }
Пример #3
0
 /**
  * @return void
  */
 public function deleteIndex()
 {
     $this->client->deleteIndex($this->getConfigurator()->index());
 }