Skip to content

Commit bc00571

Browse files
Simplify
1 parent 9b30f06 commit bc00571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Framework/TestSuite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ public function provides(): array
441441
}
442442

443443
foreach ($this->tests as $test) {
444-
if (!($test instanceof Reorderable)) {
444+
if (!$test instanceof Reorderable) {
445445
continue;
446446
}
447447

@@ -461,7 +461,7 @@ public function requires(): array
461461
$this->requiredTests = [];
462462

463463
foreach ($this->tests as $test) {
464-
if (!($test instanceof Reorderable)) {
464+
if (!$test instanceof Reorderable) {
465465
continue;
466466
}
467467

0 commit comments

Comments
 (0)