fkooman\RemoteStorage\Path::getPath PHP Method

getPath() public method

public getPath ( )
    public function getPath()
    {
        return $this->p;
    }

Usage Example

 private function deleteFolder(Path $p)
 {
     $folderPath = $this->baseDir . $p->getPath();
     if (false === @rmdir($folderPath)) {
         throw new DocumentStorageException('unable to delete folder');
     }
 }
All Usage Examples Of fkooman\RemoteStorage\Path::getPath