Neos\Flow\Persistence\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);
        }
    }