From c8f574c55bd5fcfdfafce8d1dd0bc4fb3a5a08ee Mon Sep 17 00:00:00 2001 From: umherirrender Date: Mon, 21 Jul 2014 11:52:43 +0200 Subject: [PATCH] Remove return from MaintenanceFixup::outputChanneled Parent Maintenance::outputChanneled also has no return value Change-Id: Idae9d3e1ca70d9f0ed81b345eb4fef21294cea39 --- tests/phpunit/maintenance/MaintenanceTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/phpunit/maintenance/MaintenanceTest.php b/tests/phpunit/maintenance/MaintenanceTest.php index 42d1d0bfd7..a13f7bf9a4 100644 --- a/tests/phpunit/maintenance/MaintenanceTest.php +++ b/tests/phpunit/maintenance/MaintenanceTest.php @@ -81,7 +81,7 @@ class MaintenanceFixup extends Maintenance { return; } - return call_user_func_array( array( "parent", __FUNCTION__ ), func_get_args() ); + call_user_func_array( array( "parent", __FUNCTION__ ), func_get_args() ); } /** -- 2.20.1