diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-31 12:24:37 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-08 09:00:57 +0200 |
commit | 4e347170ac31462e447daaccf794000981a68f86 (patch) | |
tree | c8ec2acfbc2fcdc1de4a65c812179f8b7353f730 /lib/public/iservercontainer.php | |
parent | d044884cfa8d065c7d784dbc792a7228e0eed46f (diff) | |
download | nextcloud-server-4e347170ac31462e447daaccf794000981a68f86.tar.gz nextcloud-server-4e347170ac31462e447daaccf794000981a68f86.zip |
Notification API
Diffstat (limited to 'lib/public/iservercontainer.php')
-rw-r--r-- | lib/public/iservercontainer.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index 81724cb4967..ea08b5a78ca 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -448,7 +448,6 @@ interface IServerContainer { */ public function getMimeTypeLoader(); - /** * Get the EventDispatcher * @@ -456,4 +455,12 @@ interface IServerContainer { * @since 8.2.0 */ public function getEventDispatcher(); + + /** + * Get the Notification Manager + * + * @return \OCP\Notification\IManager + * @since 8.2.0 + */ + public function getNotificationManager(); } |