Skip to content

Instantly share code, notes, and snippets.

@balintsera
Last active November 11, 2015 17:17
Show Gist options
  • Save balintsera/94695a31a459a81365c0 to your computer and use it in GitHub Desktop.
Save balintsera/94695a31a459a81365c0 to your computer and use it in GitHub Desktop.
<?php
public function setUpServices()
{
$this->services = [
'twig.loader' =>[
'class' => '\Twig_Loader_Filesystem',
'arguments' => [__DIR__.'/views']
],
'twig.templating' => [
'class' => '\Twig_Environment',
'arguments' => ['@twig.loader']
],
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment