diff options
author | Robin Appelman <robin@icewind.nl> | 2021-11-17 16:42:29 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2021-12-02 17:35:10 +0100 |
commit | db2dcbfe132ffdbf7aced0905d9dec9ad09e26c2 (patch) | |
tree | cc40e45a7cceb502d1c81052913a7dec523eb96b /apps/files_sharing/lib/ISharedStorage.php | |
parent | 89bc9f1b77e42c1b5bde43afb3bee0f917fda441 (diff) | |
download | nextcloud-server-db2dcbfe132ffdbf7aced0905d9dec9ad09e26c2.tar.gz nextcloud-server-db2dcbfe132ffdbf7aced0905d9dec9ad09e26c2.zip |
code checker fixes for instanceOfStorage
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing/lib/ISharedStorage.php')
-rw-r--r-- | apps/files_sharing/lib/ISharedStorage.php | 4 |
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 { } |