From: Daniel Kesselberg Date: Fri, 26 Jun 2020 08:57:14 +0000 (+0200) Subject: Replace Share with IShare and add missing return. X-Git-Tag: v20.0.0beta1~349^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F21596%2Fhead;p=nextcloud-server.git Replace Share with IShare and add missing return. Signed-off-by: Daniel Kesselberg --- 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 */