Skip to content

Commit

Permalink
Changed private static array-properties to const
Browse files Browse the repository at this point in the history
  • Loading branch information
simonberger committed Jan 24, 2021
1 parent dd3f776 commit a170990
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Escaper.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ class Escaper
// first to ensure proper escaping because str_replace operates iteratively
// on the input arrays. This ordering of the characters avoids the use of strtr,
// which performs more slowly.
private static $escapees = ['\\', '\\\\', '\\"', '"',
private const ESCAPEES = ['\\', '\\\\', '\\"', '"',
"\x00", "\x01", "\x02", "\x03", "\x04", "\x05", "\x06", "\x07",
"\x08", "\x09", "\x0a", "\x0b", "\x0c", "\x0d", "\x0e", "\x0f",
"\x10", "\x11", "\x12", "\x13", "\x14", "\x15", "\x16", "\x17",
"\x18", "\x19", "\x1a", "\x1b", "\x1c", "\x1d", "\x1e", "\x1f",
"\x7f",
"\xc2\x85", "\xc2\xa0", "\xe2\x80\xa8", "\xe2\x80\xa9",
];
private static $escaped = ['\\\\', '\\"', '\\\\', '\\"',
private const ESCAPED = ['\\\\', '\\"', '\\\\', '\\"',
'\\0', '\\x01', '\\x02', '\\x03', '\\x04', '\\x05', '\\x06', '\\a',
'\\b', '\\t', '\\n', '\\v', '\\f', '\\r', '\\x0e', '\\x0f',
'\\x10', '\\x11', '\\x12', '\\x13', '\\x14', '\\x15', '\\x16', '\\x17',
Expand Down Expand Up @@ -66,7 +66,7 @@ public static function requiresDoubleQuoting(string $value): bool
*/
public static function escapeWithDoubleQuotes(string $value): string
{
return sprintf('"%s"', str_replace(self::$escapees, self::$escaped, $value));
return sprintf('"%s"', str_replace(self::ESCAPEES, self::ESCAPED, $value));
}

/**
Expand Down

0 comments on commit a170990

Please sign in to comment.