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/notification.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/notification.php')
-rw-r--r-- | lib/private/notification/notification.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/notification/notification.php b/lib/private/notification/notification.php index 677658eb3e8..6568f53f255 100644 --- a/lib/private/notification/notification.php +++ b/lib/private/notification/notification.php @@ -22,6 +22,9 @@ namespace OC\Notification; +use OCP\Notification\IAction; +use OCP\Notification\INotification; + class Notification implements INotification { /** @var string */ protected $app; |