diff options
author | Robin Appelman <robin@icewind.nl> | 2021-11-17 16:42:29 +0100 |
---|---|---|
committer | Louis (Rebase PR Action) <artonge@users.noreply.github.com> | 2021-12-02 20:00:45 +0000 |
commit | f70f9cf1beca160dc38877e85fc30ee1ca435cb5 (patch) | |
tree | d6d3324edb218bed160c4642a70e7fc23d632227 /apps/files_sharing/lib/ISharedStorage.php | |
parent | ac28e0aefdbaa5e5806a53f691750c47ca4c39b8 (diff) | |
download | nextcloud-server-f70f9cf1beca160dc38877e85fc30ee1ca435cb5.tar.gz nextcloud-server-f70f9cf1beca160dc38877e85fc30ee1ca435cb5.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 07c012fd6ff..cbed54b3a45 100644 --- a/apps/files_sharing/lib/ISharedStorage.php +++ b/apps/files_sharing/lib/ISharedStorage.php @@ -24,5 +24,7 @@ namespace OCA\Files_Sharing; -interface ISharedStorage { +use OCP\Files\Storage\IStorage; + +interface ISharedStorage extends IStorage { } |