diff options
author | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-14 19:50:52 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@owncloud.com> | 2015-09-14 19:50:52 +0100 |
commit | 35d4851af2733515a1c81d4c0b78c4c14bf570e6 (patch) | |
tree | 7adde58609d8de5d7b64774f4339cdc4dd0c7449 /lib/public/iservercontainer.php | |
parent | 227868fe168529a638dcf2dbff4ff8f44cadc519 (diff) | |
parent | fb9e75edb6d01729a27c84f6f11399a1b0fde9f3 (diff) | |
download | nextcloud-server-35d4851af2733515a1c81d4c0b78c4c14bf570e6.tar.gz nextcloud-server-35d4851af2733515a1c81d4c0b78c4c14bf570e6.zip |
Merge branch 'master' into fix-app-disable-route
Diffstat (limited to 'lib/public/iservercontainer.php')
-rw-r--r-- | lib/public/iservercontainer.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/public/iservercontainer.php b/lib/public/iservercontainer.php index a6d83156de3..8be23dff214 100644 --- a/lib/public/iservercontainer.php +++ b/lib/public/iservercontainer.php @@ -440,6 +440,13 @@ interface IServerContainer { */ public function getMimeTypeDetector(); + /** + * Get the MimeTypeLoader + * + * @return \OCP\Files\IMimeTypeLoader + * @since 8.2.0 + */ + public function getMimeTypeLoader(); /** * Get the EventDispatcher @@ -448,4 +455,12 @@ interface IServerContainer { * @since 8.2.0 */ public function getEventDispatcher(); + + /** + * Get the Notification Manager + * + * @return \OC\Notification\IManager + * @since 8.2.0 + */ + public function getNotificationManager(); } |