diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-06-30 19:40:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 19:40:26 +0200 |
commit | bc29e361b2002002a56911c1026622df866b246d (patch) | |
tree | 5332b7232c31fb14c1cd3bbebb44125e4716a067 | |
parent | 0e42d05457b7d8f5af29c3cbd6eb259e36d38693 (diff) | |
parent | 4d44d6be2ec6dbf0f085b260387538b01a896bf5 (diff) | |
download | nextcloud-server-bc29e361b2002002a56911c1026622df866b246d.tar.gz nextcloud-server-bc29e361b2002002a56911c1026622df866b246d.zip |
Merge pull request #21596 from nextcloud/debt/noid/share-return-mismatch
Replace Share with IShare and add missing return
-rw-r--r-- | lib/private/Share20/Manager.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/Share20/Manager.php b/lib/private/Share20/Manager.php index 91fb11adc76..289545f0a46 100644 --- a/lib/private/Share20/Manager.php +++ b/lib/private/Share20/Manager.php @@ -687,7 +687,7 @@ class Manager implements IManager { * Share a path * * @param IShare $share - * @return Share The share object + * @return IShare The share object * @throws \Exception * * TODO: handle link share permissions or check them @@ -1212,7 +1212,7 @@ class Manager implements IManager { list($providerId, ) = $this->splitFullId($share->getFullId()); $provider = $this->factory->getProvider($providerId); - $provider->move($share, $recipientId); + return $provider->move($share, $recipientId); } public function getSharesInFolder($userId, Folder $node, $reshares = false) { @@ -1387,7 +1387,7 @@ class Manager implements IManager { * Get the share by token possible with password * * @param string $token - * @return Share + * @return IShare * * @throws ShareNotFound */ |