More PHPDoc for file functions

This commit is contained in:
Robin McCorkell 2014-05-12 23:56:31 +01:00
parent f7e777f7d2
commit 4755392c65
2 changed files with 12 additions and 0 deletions

View File

@ -18,7 +18,15 @@ class OC {
static private $rootView;
private $path;
/**
* @var resource
*/
private $dirSource;
/**
* @var resource
*/
private $fileSource;
private $meta;

View File

@ -168,6 +168,10 @@ class View {
}
}
/**
* @param string $path
* @return resource
*/
public function opendir($path) {
return $this->basicOperation('opendir', $path, array('read'));
}