Newscoop\Search\Indexer::deleteAll PHP Method

deleteAll() public method

Delete all docs from indexing clients
public deleteAll ( ) : void
return void
    public function deleteAll()
    {
        foreach ($this->indexClients as $client) {
            $client->deleteAll();
        }
        $this->clearAll();
    }