Neos\Flow\Persistence\Doctrine\Repository::removeAll PHP Метод

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

Removes all objects of this repository as if remove() was called for all of them.
public removeAll ( ) : void
Результат void
    public function removeAll()
    {
        foreach ($this->findAll() as $object) {
            $this->remove($object);
        }
    }