Neos\ContentRepository\Domain\Repository\NodeDataRepository::filterOutRemovedObjects PHP Метод

filterOutRemovedObjects() защищенный Метод

Technically this is a check of the given array against $this->removedNodes.
protected filterOutRemovedObjects ( array &$objects ) : void
$objects array
Результат void
    protected function filterOutRemovedObjects(array &$objects)
    {
        foreach ($objects as $index => $object) {
            if ($this->removedNodes->contains($object)) {
                unset($objects[$index]);
            }
        }
    }