From d3509a4dc7eb420bed88bb2203b13e04cb4d5fd0 Mon Sep 17 00:00:00 2001 From: Klaus Silveira Date: Sat, 17 May 2014 12:35:00 -0300 Subject: [PATCH] Removing usage of short array notation --- src/GitList/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitList/Application.php b/src/GitList/Application.php index 2b905b0..8259da1 100644 --- a/src/GitList/Application.php +++ b/src/GitList/Application.php @@ -37,7 +37,7 @@ class Application extends SilexApplication // Register services $this->register(new TwigServiceProvider(), array( - 'twig.path' => [$this->getThemePath($this['theme']), $this->getThemePath('default')], + 'twig.path' => array($this->getThemePath($this['theme']), $this->getThemePath('default')), 'twig.options' => $config->get('app', 'cache') ? array('cache' => $this->getCachePath() . 'views') : array(), ));