Skip to content

Commit 172bab7

Browse files
committed
php-cs-fixer for my changes
1 parent 83b34d5 commit 172bab7

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
@@ -763,7 +763,7 @@ public function run(TestResult $result = null)
763763
return;
764764
}
765765

766-
if ( ($this->runTestInSeparateProcess === true || $this->runClassInSeparateProcess === true ) &&
766+
if (($this->runTestInSeparateProcess === true || $this->runClassInSeparateProcess === true) &&
767767
$this->inIsolation !== true &&
768768
!$this instanceof PhptTestCase) {
769769
$class = new ReflectionClass($this);
@@ -836,7 +836,7 @@ public function run(TestResult $result = null)
836836
'phar' => $phar,
837837
'filename' => $class->getFileName(),
838838
'className' => $class->getName(),
839-
'methodName' => $runEntireClass? null : $this->name,
839+
'methodName' => $runEntireClass ? null : $this->name,
840840
'runEntireClass' => $runEntireClass,
841841
'collectCodeCoverageInformation' => $coverage,
842842
'data' => $data,

src/Util/Test.php

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

0 commit comments

Comments
 (0)