Skip to content

Commit 45a84fa

Browse files
committed
cs
1 parent c5ae0df commit 45a84fa

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/Infection/TrinaryLogicMutator.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php declare(strict_types=1);
1+
<?php declare(strict_types = 1);
22

33
namespace PHPStan\Infection;
44

@@ -7,11 +7,13 @@
77
use Infection\Mutator\MutatorCategory;
88
use LogicException;
99
use PhpParser\Node;
10+
use function in_array;
1011

1112
/**
1213
* @implements Mutator<Node\Expr\MethodCall>
1314
*/
14-
final class TrinaryLogicMutator implements Mutator {
15+
final class TrinaryLogicMutator implements Mutator
16+
{
1517

1618
public static function getDefinition(): Definition
1719
{
@@ -63,4 +65,5 @@ public function mutate(Node $node): iterable
6365
yield new Node\Expr\BooleanNot(new Node\Expr\MethodCall($node->var, 'yes'));
6466
}
6567
}
68+
6669
}

0 commit comments

Comments
 (0)