1 | <?php |
||
16 | class TwitalEngine implements EngineInterface |
||
17 | { |
||
18 | private $twigEngine; |
||
19 | private $parser; |
||
20 | |||
21 | 4 | public function __construct(TwigEngine $twigEngine, TemplateNameParserInterface $parser) |
|
26 | |||
27 | 1 | public function render($name, array $parameters = array()) |
|
31 | |||
32 | 2 | public function exists($name) |
|
36 | |||
37 | 1 | public function supports($name) |
|
43 | |||
44 | public function renderResponse($view, array $parameters = array(), Response $response = null) |
||
48 | } |
||
49 |