| 1 | <?php |
||
| 6 | class Engine |
||
| 7 | { |
||
| 8 | private $render; |
||
| 9 | private $context; |
||
| 10 | |||
| 11 | public function __construct(RenderTemplate $render = null) { |
||
| 15 | |||
| 16 | /** @return string */ |
||
| 17 | public function render($template_name, array $data) { |
||
| 23 | |||
| 24 | public function addContext(array $context) { |
||
| 27 | |||
| 28 | public function getContext() { |
||
| 31 | } |
||
| 32 |