diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-01 12:31:28 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:30 +0200 |
commit | f20844ac89f9c9d0860660b5cd5db352c6a38f80 (patch) | |
tree | 61786cdbf540568b1155b564ddbf8c3fa6483aed /lib/private/encryption/file.php | |
parent | 83cb382b3fb919bc7ce2d4e7f1fea027c3867460 (diff) | |
download | nextcloud-server-f20844ac89f9c9d0860660b5cd5db352c6a38f80.tar.gz nextcloud-server-f20844ac89f9c9d0860660b5cd5db352c6a38f80.zip |
PHPDoc
Diffstat (limited to 'lib/private/encryption/file.php')
-rw-r--r-- | lib/private/encryption/file.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/private/encryption/file.php b/lib/private/encryption/file.php index f231500fb02..3600936ed0e 100644 --- a/lib/private/encryption/file.php +++ b/lib/private/encryption/file.php @@ -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 +} |