@@ -152,7 +152,7 @@ |
||
| 152 | 152 | */ |
| 153 | 153 | private static function fixEOL(array $lines) |
| 154 | 154 | { |
| 155 | - $ltrim = function ($line) { |
|
| 155 | + $ltrim = function($line) { |
|
| 156 | 156 | return rtrim($line, "\n"); |
| 157 | 157 | }; |
| 158 | 158 | return array_map($ltrim, $lines); |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | protected static function preMergeAlter($text) : string |
| 78 | 78 | { |
| 79 | 79 | // Append new lines so that conflicts at the end of the text work. |
| 80 | - return $text . "\nthe\nend"; |
|
| 80 | + return $text."\nthe\nend"; |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |