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>
This commit is contained in:
Roeland Jago Douma 2021-03-02 20:12:46 +01:00
parent 04dc321ee7
commit 1531414e8d
1 changed files with 1 additions and 1 deletions

View File

@ -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);