Skip to content

Commit c770c05

Browse files
ArturGoldynsebastianbergmann
authored andcommitted
php-cs-fixer for my changes
1 parent 3487305 commit c770c05

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Framework/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ public function run(TestResult $result = null)
771771
return;
772772
}
773773

774-
if ( ($this->runTestInSeparateProcess === true || $this->runClassInSeparateProcess === true ) &&
774+
if (($this->runTestInSeparateProcess === true || $this->runClassInSeparateProcess === true) &&
775775
$this->inIsolation !== true &&
776776
!$this instanceof PhptTestCase) {
777777
$class = new ReflectionClass($this);
@@ -844,7 +844,7 @@ public function run(TestResult $result = null)
844844
'phar' => $phar,
845845
'filename' => $class->getFileName(),
846846
'className' => $class->getName(),
847-
'methodName' => $runEntireClass? null : $this->name,
847+
'methodName' => $runEntireClass ? null : $this->name,
848848
'runEntireClass' => $runEntireClass,
849849
'collectCodeCoverageInformation' => $coverage,
850850
'data' => $data,

src/Util/Test.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -867,6 +867,7 @@ public static function getClassProcessIsolationSettings($className, $methodName)
867867
if (isset($annotations['class']['runClassInSeparateProcess'])) {
868868
return true;
869869
}
870+
870871
return false;
871872
}
872873

0 commit comments

Comments
 (0)