Skip to content

Commit 56ee629

Browse files
TomasVotrubagithub-actions[bot]
authored andcommitted
[automated] Apply Coding Standard
1 parent 5b90a0c commit 56ee629

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rules/Php83/Rector/BooleanAnd/JsonValidateRector.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
namespace Rector\Php83\Rector\BooleanAnd;
66

7-
use PhpParser\Node\Identifier;
87
use PhpParser\Node;
98
use PhpParser\Node\Arg;
109
use PhpParser\Node\Expr\BinaryOp\BooleanAnd;
1110
use PhpParser\Node\Expr\BinaryOp\Identical;
1211
use PhpParser\Node\Expr\BinaryOp\NotIdentical;
1312
use PhpParser\Node\Expr\ConstFetch;
1413
use PhpParser\Node\Expr\FuncCall;
14+
use PhpParser\Node\Identifier;
1515
use PhpParser\Node\Name;
1616
use Rector\NodeManipulator\BinaryOpManipulator;
1717
use Rector\Php71\ValueObject\TwoNodeMatch;
@@ -100,7 +100,7 @@ public function refactor(Node $node): ?Node
100100
foreach ($args as $index => $arg) {
101101
if ($arg instanceof Arg && (
102102
($arg->name instanceof Identifier && $arg->name->toString() === 'associative') ||
103-
(!$arg->name instanceof Identifier && $index === 1)
103+
(! $arg->name instanceof Identifier && $index === 1)
104104
)) {
105105
unset($funcCall->args[$index]);
106106
break;

0 commit comments

Comments
 (0)