summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-01-22 16:20:26 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2016-01-22 16:20:26 +0100
commit7731b2913691db6966dac77241ed93b45902f7e3 (patch)
tree9f3abb4c0f2f30fb607833fae57f504fe20cc860 /apps
parent21131d133a949c4a574430f15c8e605eeb296ade (diff)
parent31c5848e51e8a61e0f6c9931efa15ff80681e0e1 (diff)
downloadnextcloud-server-7731b2913691db6966dac77241ed93b45902f7e3.tar.gz
nextcloud-server-7731b2913691db6966dac77241ed93b45902f7e3.zip
Merge pull request #21719 from owncloud/move-notification-api-to-ocp
Move the notification API to public namespace
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/lib/external/manager.php2
-rw-r--r--apps/files_sharing/lib/notifier.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_sharing/lib/external/manager.php b/apps/files_sharing/lib/external/manager.php
index 7112aa63d17..ea49348737f 100644
--- a/apps/files_sharing/lib/external/manager.php
+++ b/apps/files_sharing/lib/external/manager.php
@@ -28,7 +28,7 @@ namespace OCA\Files_Sharing\External;
use OC\Files\Filesystem;
use OCP\Files;
-use OC\Notification\IManager;
+use OCP\Notification\IManager;
class Manager {
const STORAGE = '\OCA\Files_Sharing\External\Storage';
diff --git a/apps/files_sharing/lib/notifier.php b/apps/files_sharing/lib/notifier.php
index c5c56151458..802f22e44c5 100644
--- a/apps/files_sharing/lib/notifier.php
+++ b/apps/files_sharing/lib/notifier.php
@@ -22,8 +22,8 @@
namespace OCA\Files_Sharing;
-use OC\Notification\INotification;
-use OC\Notification\INotifier;
+use OCP\Notification\INotification;
+use OCP\Notification\INotifier;
class Notifier implements INotifier {
/** @var \OCP\L10N\IFactory */