Jackalope\ObjectManager::pathArrayToPropertiesIterator PHP 메소드

pathArrayToPropertiesIterator() 보호된 메소드

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
리턴 ArrayIterato\ArrayIterator
    protected function pathArrayToPropertiesIterator($propertyPaths)
    {
        //FIXME: this will break if we have non-persisted move
        return new ArrayIterator($this->getPropertiesByPath($propertyPaths));
    }