diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-19 16:23:36 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-05-19 16:23:36 +0200 |
commit | f59576c3ca9ca8e4708002fffe8d4b14135dcd6b (patch) | |
tree | a3d6c66d4b33563a88aa91e528d43fa72a69a831 /apps | |
parent | 10d1fd1306400f61ad219c976557df6e8a431f0e (diff) | |
parent | d832c4ae2302c56169afccad9cbfe845323f295b (diff) | |
download | nextcloud-server-f59576c3ca9ca8e4708002fffe8d4b14135dcd6b.tar.gz nextcloud-server-f59576c3ca9ca8e4708002fffe8d4b14135dcd6b.zip |
Merge pull request #16447 from owncloud/fix-minor-code-problems
Fix unexisting class and broken doc
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/sharedstorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 10a37c7dae9..a833f4e65c2 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -70,7 +70,7 @@ class Shared extends \OC\Files\Storage\Common implements ISharedStorage { * Get the source file path, permissions, and owner for a shared file * * @param string $target Shared target file path - * @return Returns array with the keys path, permissions, and owner or false if not found + * @return array Returns array with the keys path, permissions, and owner or false if not found */ public function getFile($target) { if (!isset($this->files[$target])) { |