From d3d3b33dce00a69d3a8e3ebdd7bbb137a801eac0 Mon Sep 17 00:00:00 2001 From: Geolim4 Date: Fri, 15 May 2015 03:50:38 +0200 Subject: [PATCH] PHPUnit_Framework_Assert::markTestSkipped() returns void, no need to return anything. --- tests/Whoops/Handler/PrettyPageHandlerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Whoops/Handler/PrettyPageHandlerTest.php b/tests/Whoops/Handler/PrettyPageHandlerTest.php index 769ca75..513c307 100644 --- a/tests/Whoops/Handler/PrettyPageHandlerTest.php +++ b/tests/Whoops/Handler/PrettyPageHandlerTest.php @@ -290,7 +290,7 @@ class PrettyPageHandlerTest extends TestCase // Even though this test only uses ini_set and ini_get, // without xdebug active, those calls do not work. // In particular, ini_get after ini_setting returns false. - return $this->markTestSkipped('The xdebug extension is not loaded.'); + $this->markTestSkipped('The xdebug extension is not loaded.'); } $originalValue = ini_get('xdebug.file_link_format');