summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-09-08 08:57:29 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-09-08 09:01:02 +0200
commit38001d824b142ca9c47f2afafce91ab8b76f1a9a (patch)
treef1abdf50c42874a1ef847ead0fe9d89c2446451f /lib
parent59f37a8dfbc27242bb0ad50731f8ae20b1ad938c (diff)
downloadnextcloud-server-38001d824b142ca9c47f2afafce91ab8b76f1a9a.tar.gz
nextcloud-server-38001d824b142ca9c47f2afafce91ab8b76f1a9a.zip
Move interfaces to private until they are no longer experimental
Diffstat (limited to 'lib')
-rw-r--r--lib/private/notification/action.php1
-rw-r--r--lib/private/notification/iaction.php (renamed from lib/public/notification/iaction.php)4
-rw-r--r--lib/private/notification/iapp.php (renamed from lib/public/notification/iapp.php)4
-rw-r--r--lib/private/notification/imanager.php (renamed from lib/public/notification/imanager.php)4
-rw-r--r--lib/private/notification/inotification.php (renamed from lib/public/notification/inotification.php)4
-rw-r--r--lib/private/notification/inotifier.php (renamed from lib/public/notification/inotifier.php)4
-rw-r--r--lib/private/notification/manager.php5
-rw-r--r--lib/private/notification/notification.php2
-rw-r--r--lib/private/server.php2
-rw-r--r--lib/public/iservercontainer.php2
10 files changed, 12 insertions, 20 deletions
diff --git a/lib/private/notification/action.php b/lib/private/notification/action.php
index 7f654bf9082..6de8a1a4bbc 100644
--- a/lib/private/notification/action.php
+++ b/lib/private/notification/action.php
@@ -21,7 +21,6 @@
namespace OC\Notification;
-use OCP\Notification\IAction;
class Action implements IAction {
diff --git a/lib/public/notification/iaction.php b/lib/private/notification/iaction.php
index 8db1eaa6543..da6728f5c52 100644
--- a/lib/public/notification/iaction.php
+++ b/lib/private/notification/iaction.php
@@ -19,12 +19,12 @@
*
*/
-namespace OCP\Notification;
+namespace OC\Notification;
/**
* Interface IAction
*
- * @package OCP\Notification
+ * @package OC\Notification
* @since 8.2.0
*
* DEVELOPER NOTE:
diff --git a/lib/public/notification/iapp.php b/lib/private/notification/iapp.php
index a4718a21b60..eda66423f3a 100644
--- a/lib/public/notification/iapp.php
+++ b/lib/private/notification/iapp.php
@@ -19,12 +19,12 @@
*
*/
-namespace OCP\Notification;
+namespace OC\Notification;
/**
* Interface IApp
*
- * @package OCP\Notification
+ * @package OC\Notification
* @since 8.2.0
*
* DEVELOPER NOTE:
diff --git a/lib/public/notification/imanager.php b/lib/private/notification/imanager.php
index ca1cc968b12..0cd92b33251 100644
--- a/lib/public/notification/imanager.php
+++ b/lib/private/notification/imanager.php
@@ -19,12 +19,12 @@
*
*/
-namespace OCP\Notification;
+namespace OC\Notification;
/**
* Interface IManager
*
- * @package OCP\Notification
+ * @package OC\Notification
* @since 8.2.0
*
* DEVELOPER NOTE:
diff --git a/lib/public/notification/inotification.php b/lib/private/notification/inotification.php
index 51d4a804647..faf5db1d24c 100644
--- a/lib/public/notification/inotification.php
+++ b/lib/private/notification/inotification.php
@@ -19,12 +19,12 @@
*
*/
-namespace OCP\Notification;
+namespace OC\Notification;
/**
* Interface INotification
*
- * @package OCP\Notification
+ * @package OC\Notification
* @since 8.2.0
*
* DEVELOPER NOTE:
diff --git a/lib/public/notification/inotifier.php b/lib/private/notification/inotifier.php
index 9eefcddae18..22531229e3f 100644
--- a/lib/public/notification/inotifier.php
+++ b/lib/private/notification/inotifier.php
@@ -19,12 +19,12 @@
*
*/
-namespace OCP\Notification;
+namespace OC\Notification;
/**
* Interface INotifier
*
- * @package OCP\Notification
+ * @package OC\Notification
* @since 8.2.0
*
* DEVELOPER NOTE:
diff --git a/lib/private/notification/manager.php b/lib/private/notification/manager.php
index bafb123f768..9635925e38e 100644
--- a/lib/private/notification/manager.php
+++ b/lib/private/notification/manager.php
@@ -22,11 +22,6 @@
namespace OC\Notification;
-use OCP\Notification\IApp;
-use OCP\Notification\IManager;
-use OCP\Notification\INotification;
-use OCP\Notification\INotifier;
-
class Manager implements IManager {
/** @var IApp */
protected $apps;
diff --git a/lib/private/notification/notification.php b/lib/private/notification/notification.php
index 2f53a347283..40fe39a956e 100644
--- a/lib/private/notification/notification.php
+++ b/lib/private/notification/notification.php
@@ -21,8 +21,6 @@
namespace OC\Notification;
-use OCP\Notification\IAction;
-use OCP\Notification\INotification;
class Notification implements INotification {
/** @var string */
diff --git a/lib/private/server.php b/lib/private/server.php
index 880ab274f12..8e8444c83d4 100644
--- a/lib/private/server.php
+++ b/lib/private/server.php
@@ -1050,7 +1050,7 @@ class Server extends SimpleContainer implements IServerContainer {
/**
* Get the Notification Manager
*
- * @return \OCP\Notification\IManager
+ * @return \OC\Notification\IManager
* @since 8.2.0
*/
public function getNotificationManager() {
diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php
index ea08b5a78ca..8be23dff214 100644
--- a/lib/public/iservercontainer.php
+++ b/lib/public/iservercontainer.php
@@ -459,7 +459,7 @@ interface IServerContainer {
/**
* Get the Notification Manager
*
- * @return \OCP\Notification\IManager
+ * @return \OC\Notification\IManager
* @since 8.2.0
*/
public function getNotificationManager();