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 /lib/public/Files/IHomeStorage.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 'lib/public/Files/IHomeStorage.php')
-rw-r--r-- | lib/public/Files/IHomeStorage.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/public/Files/IHomeStorage.php b/lib/public/Files/IHomeStorage.php index 0f10d599148..7eb3ffc4a24 100644 --- a/lib/public/Files/IHomeStorage.php +++ b/lib/public/Files/IHomeStorage.php @@ -26,10 +26,12 @@ namespace OCP\Files; +use OCP\Files\Storage\IStorage; + /** * Interface IHomeStorage * * @since 7.0.0 */ -interface IHomeStorage { +interface IHomeStorage extends IStorage { } |