fkooman\RemoteStorage\Path::getPath PHP Метод

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

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

Usage Example

Пример #1
0
 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