Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jul 6, 2018
1 parent 80a541f commit a1df9e6
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/Util/TestDox/CliTestDoxPrinter.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,7 @@ public function __construct($out = null, bool $verbose = false, $colors = self::

public function startTest(Test $test): void
{
if (!$test instanceof TestCase
&& !$test instanceof PhptTestCase
&& !$test instanceof TestSuite
) {
if (!$test instanceof TestCase && !$test instanceof PhptTestCase && !$test instanceof TestSuite) {
return;
}

Expand Down Expand Up @@ -104,10 +101,7 @@ function (string $color, string $buffer) {

public function endTest(Test $test, float $time): void
{
if (!$test instanceof TestCase
&& !$test instanceof PhptTestCase
&& !$test instanceof TestSuite
) {
if (!$test instanceof TestCase && !$test instanceof PhptTestCase && !$test instanceof TestSuite) {
return;
}

Expand Down

0 comments on commit a1df9e6

Please sign in to comment.