From fb04c5682719b27f31c633bdb8130fc6b0a53385 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Mon, 5 Sep 2016 13:00:56 +0200 Subject: [PATCH] Null !== void, those methods are void --- lib/private/Notification/Manager.php | 3 --- lib/public/Notification/IApp.php | 2 -- lib/public/Notification/IManager.php | 2 -- 3 files changed, 7 deletions(-) diff --git a/lib/private/Notification/Manager.php b/lib/private/Notification/Manager.php index a079561f5c..ec831cf979 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 */ diff --git a/lib/public/Notification/IApp.php b/lib/public/Notification/IApp.php index fa06a63ccc..8f7b9b3d01 100644 --- a/lib/public/Notification/IApp.php +++ b/lib/public/Notification/IApp.php @@ -31,7 +31,6 @@ namespace OCP\Notification; interface IApp { /** * @param INotification $notification - * @return null * @throws \InvalidArgumentException When the notification is not valid * @since 9.0.0 */ @@ -39,7 +38,6 @@ interface IApp { /** * @param INotification $notification - * @return null * @since 9.0.0 */ public function markProcessed(INotification $notification); diff --git a/lib/public/Notification/IManager.php b/lib/public/Notification/IManager.php index 35878d2af3..cbc48142cb 100644 --- a/lib/public/Notification/IManager.php +++ b/lib/public/Notification/IManager.php @@ -32,7 +32,6 @@ interface IManager extends IApp, INotifier { /** * @param \Closure $service The service must implement IApp, otherwise a * \InvalidArgumentException is thrown later - * @return null * @since 9.0.0 */ public function registerApp(\Closure $service); @@ -42,7 +41,6 @@ interface IManager extends IApp, INotifier { * \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 9.0.0 */ public function registerNotifier(\Closure $service, \Closure $info);