diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-26 11:18:27 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-27 17:47:20 +0100 |
commit | 7b8824a4e3b7e0c1484540991ab7b3f5d99afe98 (patch) | |
tree | 18f215feb3ed9b47b8a8373e5c5f7a02114a31b9 /lib/public | |
parent | dfde04291eae31765b2cb858e1d1260b60d75329 (diff) | |
download | nextcloud-server-7b8824a4e3b7e0c1484540991ab7b3f5d99afe98.tar.gz nextcloud-server-7b8824a4e3b7e0c1484540991ab7b3f5d99afe98.zip |
Move iHomeStorage to own file
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/files/ihomestorage.php | 24 | ||||
-rw-r--r-- | lib/public/files/storage.php | 4 |
2 files changed, 24 insertions, 4 deletions
diff --git a/lib/public/files/ihomestorage.php b/lib/public/files/ihomestorage.php new file mode 100644 index 00000000000..717ef946750 --- /dev/null +++ b/lib/public/files/ihomestorage.php @@ -0,0 +1,24 @@ +<?php +/** + * ownCloud + * + * @author Robin Appelman + * @copyright 2012 Robin Appelman icewind@owncloud.com + * + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +/** + * Public interface of ownCloud for apps to use. + * Files/Storage interface + */ + +// use OCP namespace for all classes that are considered public. +// This means that they should be used by apps instead of the internal ownCloud classes +namespace OCP\Files; + +interface IHomeStorage { + +} diff --git a/lib/public/files/storage.php b/lib/public/files/storage.php index 8f8d7852ee4..323d20db564 100644 --- a/lib/public/files/storage.php +++ b/lib/public/files/storage.php @@ -336,7 +336,3 @@ interface Storage { */ public function instanceOfStorage($class); } - -interface IHomeStorage { - -} |