summaryrefslogtreecommitdiffstats
path: root/src/Component.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Component.php')
-rw-r--r--src/Component.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Component.php b/src/Component.php
index 520735b..ae05bd8 100644
--- a/src/Component.php
+++ b/src/Component.php
@@ -36,7 +36,7 @@ abstract class Component
public static function parse(
Parser $parser,
TokensList $list,
- array $options = []
+ array $options = array()
) {
// This method should be abstract, but it can't be both static and
// abstract.
@@ -56,7 +56,7 @@ abstract class Component
*
* @return string
*/
- public static function build($component, array $options = [])
+ public static function build($component, array $options = array())
{
// This method should be abstract, but it can't be both static and
// abstract.