Skip to content

Commit

Permalink
append commas to array items
Browse files Browse the repository at this point in the history
  • Loading branch information
ptomulik committed Mar 12, 2023
1 parent 2327917 commit 388efaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/TypeReconciliation/IssetTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1160,7 +1160,7 @@ function foo(array &$list, int $offset): void {
if (isset($list[$offset])) {}
$list[$offset] = "";
}',
'error_message' => 'ReferenceConstraintViolation'
'error_message' => 'ReferenceConstraintViolation',
],
'setArbitraryListWithinNotIsset' => [
'code' => '<?php
Expand All @@ -1170,7 +1170,7 @@ function foo(array &$list, int $offset): void {
$list[$offset] = "";
}
}',
'error_message' => 'ReferenceConstraintViolation'
'error_message' => 'ReferenceConstraintViolation',
],
];
}
Expand Down

0 comments on commit 388efaf

Please sign in to comment.