12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /* foo.twig */
- class __TwigTemplate_VarDumperFixture_u75a09 extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
- $this->parent = false;
- $this->blocks = array(
- );
- }
- protected function doDisplay(array $context, array $blocks = array())
- {
- // line 2
- throw new \Exception('Foobar');
- }
- public function getTemplateName()
- {
- return 'foo.twig';
- }
- public function getDebugInfo()
- {
- return array (19 => 2);
- }
- }
- /* foo bar*/
- /* twig source*/
- /* */
|