Skip to content
Snippets Groups Projects
Commit 4755392c authored by Robin McCorkell's avatar Robin McCorkell
Browse files

More PHPDoc for file functions

parent f7e777f7
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,15 @@ class OC {
static private $rootView;
private $path;
/**
* @var resource
*/
private $dirSource;
/**
* @var resource
*/
private $fileSource;
private $meta;
......
......@@ -168,6 +168,10 @@ class View {
}
}
/**
* @param string $path
* @return resource
*/
public function opendir($path) {
return $this->basicOperation('opendir', $path, array('read'));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment