gist/app/bootstrap.php.d/20-error.php
2015-05-05 22:06:02 +02:00

13 lines
256 B
PHP

<?php
$app->error(function (Exception $e, $code) use ($app) {
return $app['twig']->render(
'error.html.twig',
array(
'code' => $code,
'name' => get_class($e),
'exception' => $e,
)
);
});