Skip to content

Commit

Permalink
test: improve binary_operator_spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
realodix committed Jul 28, 2024
1 parent 88241c8 commit 039e90d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Fixtures/Ruleset/relax_actual.php
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,8 @@ public function operator__binary_operator_spaces()
$a= 1 + 2^ 3 !== 4 or 5;

$array = [
'foo'=>1,
'barr'=> 2,
'foo' =>1,
'barr'=> 2,
'bazzz'=> 3,
];
}
Expand Down
4 changes: 2 additions & 2 deletions tests/Fixtures/Ruleset/relax_expected.php
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,8 @@ public function operator__binary_operator_spaces()
$a = 1 + 2 ^ 3 !== 4 or 5;

$array = [
'foo' => 1,
'barr' => 2,
'foo' => 1,
'barr' => 2,
'bazzz' => 3,
];
}
Expand Down

0 comments on commit 039e90d

Please sign in to comment.