Skip to content

Commit aacd176

Browse files
committed
CS: Ensure there is no code on the same line as the PHP open tag and it is followed by a blankline
1 parent 84628b0 commit aacd176

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Translation/PhpStringTokenParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public static function parse($str)
7777
if ('\'' === $str[$bLength]) {
7878
return str_replace(
7979
array('\\\\', '\\\''),
80-
array( '\\', '\''),
80+
array('\\', '\''),
8181
substr($str, $bLength + 1, -1)
8282
);
8383
} else {

0 commit comments

Comments
 (0)