| 1 | <?php |
||
| 13 | class PhpEngine extends AbstractEngine |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | public function type(): string |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param string $templateString The template string to render. |
||
| 25 | * @param mixed $context The rendering context. |
||
| 26 | * @return string The rendered template string. |
||
| 27 | */ |
||
| 28 | public function renderTemplate(string $templateString, $context): string |
||
| 43 | } |
||
| 44 |