diff options
Diffstat (limited to 'lib/public/Notification/IManager.php')
-rw-r--r-- | lib/public/Notification/IManager.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/lib/public/Notification/IManager.php b/lib/public/Notification/IManager.php index 262bb121431..af890594d4c 100644 --- a/lib/public/Notification/IManager.php +++ b/lib/public/Notification/IManager.php @@ -38,11 +38,21 @@ interface IManager extends IApp, INotifier { public function registerApp(string $appClass): void; /** - * @param string $notifierClass The service must implement INotifier, otherwise a + * @param \Closure $service The service must implement INotifier, otherwise a + * \InvalidArgumentException is thrown later + * @param \Closure $info An array with the keys 'id' and 'name' containing + * the app id and the app name + * @deprecated 17.0.0 use registerNotifierService instead. + * @since 8.2.0 - Parameter $info was added in 9.0.0 + */ + public function registerNotifier(\Closure $service, \Closure $info); + + /** + * @param string $notifierService The service must implement INotifier, otherwise a * \InvalidArgumentException is thrown later * @since 17.0.0 */ - public function registerNotifier(string $notifierClass): void; + public function registerNotifierService(string $notifierService): void; /** * @return INotifier[] |