[CS] Trim whitespaces inside arrays

This commit is contained in:
Gabriel Caruso 2018-01-10 14:18:49 -02:00 committed by Nikita Popov
parent a8968caa5b
commit fc8ac71e76

View File

@ -61,7 +61,7 @@ class String_ extends Scalar
if ('\'' === $str[$bLength]) {
return str_replace(
['\\\\', '\\\''],
[ '\\', '\''],
['\\', '\''],
substr($str, $bLength + 1, -1)
);
} else {