We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a92a71e commit 5655428Copy full SHA for 5655428
lib/Workspace.php
@@ -118,7 +118,7 @@ public function loadManifest(string $manifest): void
118
*/
119
private function parseManifest(string $manifest): array
120
{
121
- $lines = explode(PHP_EOL, $manifest);
+ $lines = explode("\n", $manifest);
122
123
$buffer = [];
124
$currentFile = null;
@@ -143,7 +143,7 @@ private function parseManifest(string $manifest): array
143
}
144
145
return array_map(function (array $lines) {
146
- return implode(PHP_EOL, $lines);
+ return implode("\n", $lines);
147
}, $buffer);
148
149
0 commit comments