diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 22:17:06 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 22:17:06 +0100 |
commit | b502667f3a5e6f08fb2fefbac56134d074859c09 (patch) | |
tree | 56dbda713859ee4f0b36bc2e746ad722e83cc1fa /lib | |
parent | a14649990242cae1cce2b1035666a5688420a2a4 (diff) | |
parent | e6712c47a6f6e4991e90b8bbb89eb71345f6df1b (diff) | |
download | nextcloud-server-b502667f3a5e6f08fb2fefbac56134d074859c09.tar.gz nextcloud-server-b502667f3a5e6f08fb2fefbac56134d074859c09.zip |
Merge pull request #23121 from owncloud/scrutinizer_share_fixes
Fix some scrutinizer warning in the sharing code
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/share/imanager.php | 4 |
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[] |