From 76e16f33168f5b721652f848b67310bb5fe6d73c Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Sat, 16 May 2020 07:20:15 +0200 Subject: [PATCH] Fix CS/WS issue introduced in e2d8b8527cff94e72faee8d344c69fe7bd4bce44 --- tests/tests/PHPTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests/PHPTest.php b/tests/tests/PHPTest.php index 2f05e7110..14ce3a9f9 100644 --- a/tests/tests/PHPTest.php +++ b/tests/tests/PHPTest.php @@ -24,7 +24,7 @@ public function testPHPSerialisationProducesValidCode(): void { $coverage = $this->getCoverageForBankAccount(); - /** @noinspection UnusedFunctionResultInspection */ + /* @noinspection UnusedFunctionResultInspection */ (new PHP())->process($coverage, self::$TEST_TMP_PATH . '/serialized.php'); $unserialized = require self::$TEST_TMP_PATH . '/serialized.php';