diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-14 14:35:24 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-22 10:32:42 +0100 |
commit | ee02165005f3fd24e1a17fdb3faeedda036d93c7 (patch) | |
tree | 1fd047788bb8f439665ff3e61d135bb6a62856c9 /lib/private/notification/manager.php | |
parent | e2e5eedb40a15ef3a6971e2145abec24873c4400 (diff) | |
download | nextcloud-server-ee02165005f3fd24e1a17fdb3faeedda036d93c7.tar.gz nextcloud-server-ee02165005f3fd24e1a17fdb3faeedda036d93c7.zip |
Move the notification API to public namespace
Diffstat (limited to 'lib/private/notification/manager.php')
-rw-r--r-- | lib/private/notification/manager.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/private/notification/manager.php b/lib/private/notification/manager.php index 239b5bfe5c7..a14a1deec0c 100644 --- a/lib/private/notification/manager.php +++ b/lib/private/notification/manager.php @@ -22,6 +22,11 @@ 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; |