summaryrefslogtreecommitdiffstats
path: root/lib/public/Share
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2021-03-02 20:12:46 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2021-03-02 20:12:46 +0100
commit1531414e8d2ff589c2242f1a603661bcfe593252 (patch)
tree520f8806bf251505d0b77231bfeddf8d31b17fb7 /lib/public/Share
parent04dc321ee732afb95dee8ddc226fd3dc0bd9fd64 (diff)
downloadnextcloud-server-1531414e8d2ff589c2242f1a603661bcfe593252.tar.gz
nextcloud-server-1531414e8d2ff589c2242f1a603661bcfe593252.zip
Fix docblock return type for IShareProvider
All the implementations already returned an array of array of shares. So better to make sure the docblock also doesn't lie. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/Share')
-rw-r--r--lib/public/Share/IShareProvider.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Share/IShareProvider.php b/lib/public/Share/IShareProvider.php
index 87e9673b961..c35fa6660f2 100644
--- a/lib/public/Share/IShareProvider.php
+++ b/lib/public/Share/IShareProvider.php
@@ -124,7 +124,7 @@ interface IShareProvider {
* @param string $userId
* @param Folder $node
* @param bool $reshares Also get the shares where $user is the owner instead of just the shares where $user is the initiator
- * @return \OCP\Share\IShare[]
+ * @return \OCP\Share\IShare[][]
* @since 11.0.0
*/
public function getSharesInFolder($userId, Folder $node, $reshares);