Neos\Flow\Persistence\Repository::removeAll PHP Méthode

removeAll() public méthode

Removes all objects of this repository as if remove() was called for all of them.
public removeAll ( ) : void
Résultat void
    public function removeAll()
    {
        foreach ($this->findAll() as $object) {
            $this->remove($object);
        }
    }