summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@owncloud.com>2016-03-10 21:35:22 +0100
committerRoeland Jago Douma <rullzer@owncloud.com>2016-03-10 21:35:22 +0100
commite6712c47a6f6e4991e90b8bbb89eb71345f6df1b (patch)
tree10f2fa42ce59b2ccb613c672d3a4b7f4be1b37d1 /lib/public
parent7f16aaefc8ea52ce258742f02b0bbe70753eecb9 (diff)
downloadnextcloud-server-e6712c47a6f6e4991e90b8bbb89eb71345f6df1b.tar.gz
nextcloud-server-e6712c47a6f6e4991e90b8bbb89eb71345f6df1b.zip
Fix some scrutinizer warning in the sharing code
* Better phpdoc * Promper use statements * Unused parameter
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/share/imanager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/share/imanager.php b/lib/public/share/imanager.php
index f926104dde0..edb76c46de4 100644
--- a/lib/public/share/imanager.php
+++ b/lib/public/share/imanager.php
@@ -23,7 +23,7 @@ namespace OCP\Share;
use OCP\IUser;
-use OC\Share20\Exception\ShareNotFound;
+use OCP\Share\Exceptions\ShareNotFound;
/**
* Interface IManager
@@ -106,7 +106,7 @@ interface IManager {
*
* @param string $userId
* @param int $shareType
- * @param File|Folder|null $node
+ * @param \OCP\Files\File|\OCP\Files\Folder|null $node
* @param int $limit The maximum number of shares returned, -1 for all
* @param int $offset
* @return IShare[]