]> source.dussan.org Git - nextcloud-server.git/commitdiff
Move Stuff to PSR-4 again
authorJoas Schilling <nickvergessen@owncloud.com>
Tue, 24 May 2016 14:10:22 +0000 (16:10 +0200)
committerJoas Schilling <nickvergessen@owncloud.com>
Tue, 24 May 2016 14:10:22 +0000 (16:10 +0200)
apps/files_external/lib/Lib/Config/IAuthMechanismProvider.php [new file with mode: 0644]
apps/files_external/lib/Lib/Config/IBackendProvider.php [new file with mode: 0644]
apps/files_external/lib/config/iauthmechanismprovider.php [deleted file]
apps/files_external/lib/config/ibackendprovider.php [deleted file]

diff --git a/apps/files_external/lib/Lib/Config/IAuthMechanismProvider.php b/apps/files_external/lib/Lib/Config/IAuthMechanismProvider.php
new file mode 100644 (file)
index 0000000..035b8e8
--- /dev/null
@@ -0,0 +1,38 @@
+<?php
+/**
+ * @author Robin McCorkell <robin@mccorkell.me.uk>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\Files_External\Lib\Config;
+
+use \OCA\Files_External\Lib\Auth\AuthMechanism;
+
+/**
+ * Provider of external storage auth mechanisms
+ * @since 9.1.0
+ */
+interface IAuthMechanismProvider {
+
+       /**
+        * @since 9.1.0
+        * @return AuthMechanism[]
+        */
+       public function getAuthMechanisms();
+
+}
diff --git a/apps/files_external/lib/Lib/Config/IBackendProvider.php b/apps/files_external/lib/Lib/Config/IBackendProvider.php
new file mode 100644 (file)
index 0000000..2335e71
--- /dev/null
@@ -0,0 +1,38 @@
+<?php
+/**
+ * @author Robin McCorkell <robin@mccorkell.me.uk>
+ *
+ * @copyright Copyright (c) 2016, ownCloud, Inc.
+ * @license AGPL-3.0
+ *
+ * This code is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3,
+ * as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License, version 3,
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>
+ *
+ */
+
+namespace OCA\Files_External\Lib\Config;
+
+use \OCA\Files_External\Lib\Backend\Backend;
+
+/**
+ * Provider of external storage backends
+ * @since 9.1.0
+ */
+interface IBackendProvider {
+
+       /**
+        * @since 9.1.0
+        * @return Backend[]
+        */
+       public function getBackends();
+
+}
diff --git a/apps/files_external/lib/config/iauthmechanismprovider.php b/apps/files_external/lib/config/iauthmechanismprovider.php
deleted file mode 100644 (file)
index 035b8e8..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/**
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program.  If not, see <http://www.gnu.org/licenses/>
- *
- */
-
-namespace OCA\Files_External\Lib\Config;
-
-use \OCA\Files_External\Lib\Auth\AuthMechanism;
-
-/**
- * Provider of external storage auth mechanisms
- * @since 9.1.0
- */
-interface IAuthMechanismProvider {
-
-       /**
-        * @since 9.1.0
-        * @return AuthMechanism[]
-        */
-       public function getAuthMechanisms();
-
-}
diff --git a/apps/files_external/lib/config/ibackendprovider.php b/apps/files_external/lib/config/ibackendprovider.php
deleted file mode 100644 (file)
index 2335e71..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-/**
- * @author Robin McCorkell <robin@mccorkell.me.uk>
- *
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- * @license AGPL-3.0
- *
- * This code is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License, version 3,
- * as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License, version 3,
- * along with this program.  If not, see <http://www.gnu.org/licenses/>
- *
- */
-
-namespace OCA\Files_External\Lib\Config;
-
-use \OCA\Files_External\Lib\Backend\Backend;
-
-/**
- * Provider of external storage backends
- * @since 9.1.0
- */
-interface IBackendProvider {
-
-       /**
-        * @since 9.1.0
-        * @return Backend[]
-        */
-       public function getBackends();
-
-}