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