Skip to content

Instantly share code, notes, and snippets.

@sybeck2k
sybeck2k / app.php
Created October 23, 2012 15:31
Add Twig Debug extension in Silex
<?php
//and in your application add:
$app['twig'] = $app->share($app->extend('twig', function($twig, $app) {
$twig->addExtension(new \Twig_Extensions_Extension_Debug());
return $twig;
}));