1// indices/delete-index.asciidoc:10
2
3[source, php]
4----
5$params = [
6    'index' => 'twitter',
7];
8$response = $client->indices()->delete($params);
9----
10