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 71728df commit f07475cCopy full SHA for f07475c
src/DataFields.php
@@ -66,7 +66,7 @@ private function parseData($dataString)
66
{
67
$output = array();
68
$field = array();
69
- foreach (explode(PHP_EOL, $dataString) as $line) {
+ foreach (explode("\n", $dataString) as $line) {
70
$trimmedLine = trim($line);
71
if ($trimmedLine === '---' || $trimmedLine === '') {
72
// Block completed; process it
0 commit comments