mirror of
https://github.com/klaussilveira/gitlist.git
synced 2026-04-14 00:17:54 +02:00
Removing usage of short array notation
This commit is contained in:
@@ -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(),
|
||||
));
|
||||
|
||||
Reference in New Issue
Block a user