Skip to content

Commit 1548a0a

Browse files
committed
fixed CS
1 parent d7f2d2c commit 1548a0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Unescaper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Unescaper
3434
/**
3535
* Regex fragment that matches an escaped character in a double quoted string.
3636
*/
37-
const REGEX_ESCAPED_CHARACTER = "\\\\(x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}|.)";
37+
const REGEX_ESCAPED_CHARACTER = '\\\\(x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}|.)';
3838

3939
/**
4040
* Unescapes a single quoted string.

0 commit comments

Comments
 (0)