| 1 | <?php |
||
| 8 | class Php implements EngineInterface { |
||
| 9 | /** |
||
| 10 | * Global context |
||
| 11 | * |
||
| 12 | * @var array |
||
| 13 | */ |
||
| 14 | protected $global_context = []; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Constructor |
||
| 18 | * |
||
| 19 | * @param array $global_context |
||
| 20 | */ |
||
| 21 | 1 | public function __construct( $global_context ) { |
|
| 24 | |||
| 25 | /** |
||
| 26 | * {@inheritDoc} |
||
| 27 | */ |
||
| 28 | 3 | public function render( $file, $context ) { |
|
| 42 | } |
||
| 43 |