]> source.dussan.org Git - nextcloud-server.git/commitdiff
PHPDoc
authorThomas Müller <thomas.mueller@tmit.eu>
Wed, 1 Apr 2015 10:31:28 +0000 (12:31 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 7 Apr 2015 11:30:30 +0000 (13:30 +0200)
lib/private/encryption/file.php
lib/public/encryption/ifile.php

index f231500fb02b51589e2829eac152ccc7b19fb19f..3600936ed0e072f117d4469fdb38c4787b5f034f 100644 (file)
@@ -23,8 +23,6 @@
 
 namespace OC\Encryption;
 
-use OC\Encryption\Util;
-
 class File implements \OCP\Encryption\IFile {
 
        /** @var Util */
@@ -38,7 +36,7 @@ class File implements \OCP\Encryption\IFile {
        /**
         * get list of users with access to the file
         *
-        * @param $path to the file
+        * @param string $path to the file
         * @return array
         */
        public function getAccessList($path) {
@@ -78,4 +76,4 @@ class File implements \OCP\Encryption\IFile {
                return array('users' => $uniqueUserIds, 'public' => $public);
        }
 
-}
\ No newline at end of file
+}
index cb4faea062570d5c4ec7c404be8d6b0f2cb0fdb4..464f41509d279e933635f47f7a9347a2b189c85d 100644 (file)
@@ -28,9 +28,9 @@ interface IFile {
        /**
         * get list of users with access to the file
         *
-        * @param $path to the file
+        * @param string $path to the file
         * @return array
         */
        public function getAccessList($path);
 
-}
\ No newline at end of file
+}