diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-05 13:00:56 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2016-09-05 13:00:56 +0200 |
commit | fb04c5682719b27f31c633bdb8130fc6b0a53385 (patch) | |
tree | 4c0c49af6042c810dff9c9fa1142a50f6a6bd372 /lib/private/Notification | |
parent | 8b484eedf029b8e1a9dcef0efb09db381888c4b0 (diff) | |
download | nextcloud-server-fb04c5682719b27f31c633bdb8130fc6b0a53385.tar.gz nextcloud-server-fb04c5682719b27f31c633bdb8130fc6b0a53385.zip |
Null !== void, those methods are void
Diffstat (limited to 'lib/private/Notification')
-rw-r--r-- | lib/private/Notification/Manager.php | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/private/Notification/Manager.php b/lib/private/Notification/Manager.php index a079561f5c9..ec831cf9793 100644 --- a/lib/private/Notification/Manager.php +++ b/lib/private/Notification/Manager.php @@ -60,7 +60,6 @@ class Manager implements IManager { /** * @param \Closure $service The service must implement IApp, otherwise a * \InvalidArgumentException is thrown later - * @return null * @since 8.2.0 */ public function registerApp(\Closure $service) { @@ -73,7 +72,6 @@ class Manager implements IManager { * \InvalidArgumentException is thrown later * @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 */ public function registerNotifier(\Closure $service, \Closure $info) { @@ -164,7 +162,6 @@ class Manager implements IManager { /** * @param INotification $notification - * @return null * @throws \InvalidArgumentException When the notification is not valid * @since 8.2.0 */ |