diff options
Diffstat (limited to 'src/Components/FunctionCall.php')
-rw-r--r-- | src/Components/FunctionCall.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Components/FunctionCall.php b/src/Components/FunctionCall.php index 382ee8f..aaffbbb 100644 --- a/src/Components/FunctionCall.php +++ b/src/Components/FunctionCall.php @@ -57,7 +57,7 @@ class FunctionCall extends Component * * @return FunctionCall */ - public static function parse(Parser $parser, TokensList $list, array $options = []) + public static function parse(Parser $parser, TokensList $list, array $options = array()) { $ret = new self(); @@ -112,7 +112,7 @@ class FunctionCall extends Component * * @return string */ - public static function build($component, array $options = []) + public static function build($component, array $options = array()) { return $component->name . $component->parameters; } |