diff options
author | Bart Visscher <bartv@thisnet.nl> | 2014-05-01 18:12:17 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2014-05-01 18:12:17 +0200 |
commit | 614cc67f884ffd2e386688c77a8bfffacef5c734 (patch) | |
tree | 224f5f0e4a48e752220148c2ab2f001bf324a9cf /lib/public/share.php | |
parent | c34659dd892c5099dfa69682b23b846ded675d75 (diff) | |
download | nextcloud-server-614cc67f884ffd2e386688c77a8bfffacef5c734.tar.gz nextcloud-server-614cc67f884ffd2e386688c77a8bfffacef5c734.zip |
Correct return type for getFilePath
Diffstat (limited to 'lib/public/share.php')
-rw-r--r-- | lib/public/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/share.php b/lib/public/share.php index 4c7ee3a190e..b21b3a7b963 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -397,7 +397,7 @@ interface Share_Backend_File_Dependent extends Share_Backend { * Get the file path of the item * @param string $itemSource * @param string $uidOwner User that is the owner of shared item - * @return boolean + * @return string|false */ public function getFilePath($itemSource, $uidOwner); |