mageekguy\atoum\fs\path::getResolvedPath PHP Method

getResolvedPath() public method

public getResolvedPath ( )
    public function getResolvedPath()
    {
        $clone = clone $this;
        return $clone->resolve();
    }

Usage Example

Example #1
0
 public function isSubPathOf(path $path)
 {
     $this->resolve();
     $resolvedPath = $path->getResolvedPath();
     return $this->components !== $resolvedPath->components && ($resolvedPath->isRoot() === true || strpos($this->components, $resolvedPath->components . '/') === 0);
 }
All Usage Examples Of mageekguy\atoum\fs\path::getResolvedPath