]> source.dussan.org Git - nextcloud-server.git/commitdiff
More PHPDoc for file functions
authorRobin McCorkell <rmccorkell@karoshi.org.uk>
Mon, 12 May 2014 22:56:31 +0000 (23:56 +0100)
committerRobin McCorkell <rmccorkell@karoshi.org.uk>
Tue, 13 May 2014 18:09:14 +0000 (19:09 +0100)
lib/private/files/stream/oc.php
lib/private/files/view.php

index 88e7e062df9da747515bde59d9409c657ffb28e2..c206b41f55ee6c3ed06d81091da073218c4a9d76 100644 (file)
@@ -18,7 +18,15 @@ class OC {
        static private $rootView;
 
        private $path;
+
+       /**
+        * @var resource
+        */
        private $dirSource;
+
+       /**
+        * @var resource
+        */
        private $fileSource;
        private $meta;
 
index 1f424757bb88bfda7f5cfa54a6eaf3b51a7aea5b..3b99bd12b8adf91de65a51d3d8b8f21a59675413 100644 (file)
@@ -168,6 +168,10 @@ class View {
                }
        }
 
+       /**
+        * @param string $path
+        * @return resource
+        */
        public function opendir($path) {
                return $this->basicOperation('opendir', $path, array('read'));
        }