Skip to content

Commit e093f96

Browse files
committed
Replaced [] with array() in AST\Expander class for php 5.3 support
1 parent b98bc9c commit e093f96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Coduo/PHPMatcher/AST/Expander.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Expander implements Node
2020
public function __construct($name)
2121
{
2222
$this->name = $name;
23-
$this->arguments = [];
23+
$this->arguments = array();
2424
}
2525

2626
/**

0 commit comments

Comments
 (0)