Skip to content

Commit 4b30859

Browse files
committed
Issue #105 Fix compatibility with PHP 5.3
1 parent 8de5b0f commit 4b30859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DataFields.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public static function parse($input)
107107
*/
108108
public static function parseBlock($block)
109109
{
110-
$data = [];
110+
$data = array();
111111
$lines = preg_split("/(\r\n|\n|\r)/", trim($block));
112112
$continueKey = null;
113113
foreach($lines as $n => $line) {

0 commit comments

Comments
 (0)