summaryrefslogtreecommitdiffstats
path: root/lib/files
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2013-09-10 20:13:47 +0200
committerRobin Appelman <icewind@owncloud.com>2013-09-10 20:13:47 +0200
commit2e5ce091f037f0f1b2d5f97ad8866a82c9118f58 (patch)
tree90b1fc535c747e7e556bc292a338ba33d9758ab9 /lib/files
parent9ad7891b4e7ddf1c4420f485c5d3cf4477835087 (diff)
downloadnextcloud-server-2e5ce091f037f0f1b2d5f97ad8866a82c9118f58.tar.gz
nextcloud-server-2e5ce091f037f0f1b2d5f97ad8866a82c9118f58.zip
add storage backend interface to public namespace
Diffstat (limited to 'lib/files')
-rw-r--r--lib/files/storage/storage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/files/storage/storage.php b/lib/files/storage/storage.php
index c96caebf4af..b673bb9a32d 100644
--- a/lib/files/storage/storage.php
+++ b/lib/files/storage/storage.php
@@ -13,7 +13,7 @@ namespace OC\Files\Storage;
*
* All paths passed to the storage are relative to the storage and should NOT have a leading slash.
*/
-interface Storage {
+interface Storage extends \OCP\Files\Storage {
/**
* $parameters is a free form array with the configuration options needed to construct the storage
*