1 | <?php |
||
7 | abstract class RenderTemplateDecorator implements Plates\RenderTemplate |
||
8 | { |
||
9 | protected $render; |
||
10 | |||
11 | public function __construct(Plates\RenderTemplate $render) { |
||
14 | |||
15 | abstract public function renderTemplate(Plates\Template $template, Plates\RenderTemplate $rt = null); |
||
16 | |||
17 | public static function factory() { |
||
22 | } |
||
23 |