Skip to content

Commit e566070

Browse files
committed
Merge branch '4.3' into 4.4
* 4.3: Fix CS Fix CS
2 parents 72feb69 + 8cccc7d commit e566070

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Internal/Exporter.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,14 +222,14 @@ public static function export($value, $indent = '')
222222
));
223223

224224
if ("'" === $m[2]) {
225-
return substr($m[1], 0, -2);
225+
return substr($m[1], 0, -2);
226226
}
227227

228228
if ('n".\'' === substr($m[1], -4)) {
229-
return substr_replace($m[1], "\n".$subIndent.".'".$m[2], -2);
229+
return substr_replace($m[1], "\n".$subIndent.".'".$m[2], -2);
230230
}
231231

232-
return $m[1].$m[2];
232+
return $m[1].$m[2];
233233
}, $code, -1, $count);
234234

235235
if ($count && 0 === strpos($code, "''.")) {

0 commit comments

Comments
 (0)