Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2021-11-17 18:42:29 +0300
committerRobin Appelman <robin@icewind.nl>2021-12-02 19:35:10 +0300
commitdb2dcbfe132ffdbf7aced0905d9dec9ad09e26c2 (patch)
treecc40e45a7cceb502d1c81052913a7dec523eb96b /apps/files_sharing/lib
parent89bc9f1b77e42c1b5bde43afb3bee0f917fda441 (diff)
code checker fixes for instanceOfStorage
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/ISharedStorage.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/ISharedStorage.php b/apps/files_sharing/lib/ISharedStorage.php
index 9f57984803a..c54b90f3f05 100644
--- a/apps/files_sharing/lib/ISharedStorage.php
+++ b/apps/files_sharing/lib/ISharedStorage.php
@@ -22,5 +22,7 @@
*/
namespace OCA\Files_Sharing;
-interface ISharedStorage {
+use OCP\Files\Storage\IStorage;
+
+interface ISharedStorage extends IStorage {
}