org\bovigo\vfs\vfsStreamDirectory::setParentPath PHP Метод

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

sets parent path
С версии: 1.2.0
public setParentPath ( string $parentPath )
$parentPath string
    public function setParentPath($parentPath)
    {
        parent::setParentPath($parentPath);
        foreach ($this->children as $child) {
            $child->setParentPath($this->path());
        }
    }