]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move iHomeStorage to own file
authorJoas Schilling <nickvergessen@gmx.de>
Wed, 26 Nov 2014 10:18:27 +0000 (11:18 +0100)
committerJoas Schilling <nickvergessen@gmx.de>
Thu, 27 Nov 2014 16:47:20 +0000 (17:47 +0100)
lib/public/files/ihomestorage.php [new file with mode: 0644]
lib/public/files/storage.php

diff --git a/lib/public/files/ihomestorage.php b/lib/public/files/ihomestorage.php
new file mode 100644 (file)
index 0000000..717ef94
--- /dev/null
@@ -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 {
+
+}
index 8f8d7852ee426ff3b4bf77f8ec3731c975d0f4e8..323d20db564ee574448aeff584b6785cc8026988 100644 (file)
@@ -336,7 +336,3 @@ interface Storage {
         */
        public function instanceOfStorage($class);
 }
-
-interface IHomeStorage {
-
-}