More PHPDoc for file functions

remotes/origin/ldap_group_count
Robin McCorkell 12 years ago
parent f7e777f7d2
commit 4755392c65
  1. 8
      lib/private/files/stream/oc.php
  2. 4
      lib/private/files/view.php

@ -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'));
}

Loading…
Cancel
Save