Skip to content

Commit

Permalink
Merge branch '4.3' into 4.4
Browse files Browse the repository at this point in the history
* 4.3:
  Fix CS
  Fix CS
  • Loading branch information
fabpot committed Dec 1, 2019
2 parents 72feb69 + 8cccc7d commit e566070
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Internal/Exporter.php
Expand Up @@ -222,14 +222,14 @@ public static function export($value, $indent = '')
));

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

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

return $m[1].$m[2];
return $m[1].$m[2];
}, $code, -1, $count);

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

0 comments on commit e566070

Please sign in to comment.