| 1 | <?php |
||
| 9 | class TwigView implements RenderInterface |
||
| 10 | { |
||
| 11 | /** @var \Twig_Environment */ |
||
| 12 | protected $twig; |
||
| 13 | |||
| 14 | /** @var array */ |
||
| 15 | protected $values = []; |
||
| 16 | |||
| 17 | public function __construct(Twig_Environment $twig) |
||
| 21 | |||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function with(array $values = []) |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | public function render($template, array $values = [], $basePath = null) |
||
| 48 | } |
||
| 49 |