Replace Share with IShare and add missing return.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
Daniel Kesselberg 2020-06-26 10:57:14 +02:00
parent ed4afa55c1
commit 4d44d6be2e
No known key found for this signature in database
GPG key ID: 36E3664E099D0614

View file

@ -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
*/