Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Dec 1, 2019
1 parent 097aa4c commit 8cccc7d
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 8cccc7d

Please sign in to comment.