Newscoop\Search\Indexer::deleteAll PHP Méthode

deleteAll() public méthode

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