Jackalope\ObjectManager::pathArrayToPropertiesIterator PHP Method

pathArrayToPropertiesIterator() protected method

Transform an array containing properties paths to an ArrayIterator over Property objects
protected pathArrayToPropertiesIterator ( array $propertyPaths ) : ArrayIterato\ArrayIterator
$propertyPaths array an array of properties paths
return ArrayIterato\ArrayIterator
    protected function pathArrayToPropertiesIterator($propertyPaths)
    {
        //FIXME: this will break if we have non-persisted move
        return new ArrayIterator($this->getPropertiesByPath($propertyPaths));
    }