From: umherirrender Date: Mon, 21 Jul 2014 09:52:43 +0000 (+0200) Subject: Remove return from MaintenanceFixup::outputChanneled X-Git-Tag: 1.31.0-rc.0~14678 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/supprimer.php?a=commitdiff_plain;h=c8f574c55bd5fcfdfafce8d1dd0bc4fb3a5a08ee;p=lhc%2Fweb%2Fwiklou.git Remove return from MaintenanceFixup::outputChanneled Parent Maintenance::outputChanneled also has no return value Change-Id: Idae9d3e1ca70d9f0ed81b345eb4fef21294cea39 --- 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() ); } /**