diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-02 20:12:46 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2021-03-02 20:12:46 +0100 |
commit | 1531414e8d2ff589c2242f1a603661bcfe593252 (patch) | |
tree | 520f8806bf251505d0b77231bfeddf8d31b17fb7 /lib/public/Share | |
parent | 04dc321ee732afb95dee8ddc226fd3dc0bd9fd64 (diff) | |
download | nextcloud-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.php | 2 |
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); |