diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-22 10:51:36 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-01-22 10:51:36 +0100 |
commit | 9ea7ae6f872ab9824fd5afd320a8c9ebb17fc2fc (patch) | |
tree | 95a3dcc8929ca714f02f2a5c7df7ea428a196e2b /lib/public/notification/imanager.php | |
parent | ee02165005f3fd24e1a17fdb3faeedda036d93c7 (diff) | |
download | nextcloud-server-9ea7ae6f872ab9824fd5afd320a8c9ebb17fc2fc.tar.gz nextcloud-server-9ea7ae6f872ab9824fd5afd320a8c9ebb17fc2fc.zip |
Adjust the since on the interface
Diffstat (limited to 'lib/public/notification/imanager.php')
-rw-r--r-- | lib/public/notification/imanager.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/public/notification/imanager.php b/lib/public/notification/imanager.php index b891385c793..a18af747b10 100644 --- a/lib/public/notification/imanager.php +++ b/lib/public/notification/imanager.php @@ -25,14 +25,14 @@ namespace OCP\Notification; * Interface IManager * * @package OCP\Notification - * @since 8.2.0 + * @since 9.0.0 */ interface IManager extends IApp, INotifier { /** * @param \Closure $service The service must implement IApp, otherwise a * \InvalidArgumentException is thrown later * @return null - * @since 8.2.0 + * @since 9.0.0 */ public function registerApp(\Closure $service); @@ -42,7 +42,7 @@ interface IManager extends IApp, INotifier { * @param \Closure $info An array with the keys 'id' and 'name' containing * the app id and the app name * @return null - * @since 8.2.0 - Parameter $info was added in 9.0.0 + * @since 9.0.0 */ public function registerNotifier(\Closure $service, \Closure $info); @@ -54,13 +54,13 @@ interface IManager extends IApp, INotifier { /** * @return INotification - * @since 8.2.0 + * @since 9.0.0 */ public function createNotification(); /** * @return bool - * @since 8.2.0 + * @since 9.0.0 */ public function hasNotifiers(); } |