Skip to content

Commit

Permalink
make cs-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
halaxa committed Feb 5, 2022
1 parent 8a2771a commit 0372736
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Tokens.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,14 @@ private function insignificantBytes(): array
{
$insignificantBytes = [];
foreach (range(0, 255) as $ord) {
if (!in_array(
if ( ! in_array(
chr($ord),
['\\', '"', "\xEF", "\xBB", "\xBF", ' ', "\n", "\r", "\t", '{', '}', '[', ']', ':', ',']
)) {
$insignificantBytes[chr($ord)] = true;
}
}

return $insignificantBytes;
}

Expand Down

0 comments on commit 0372736

Please sign in to comment.