1 | <?php |
||
16 | class SimpleHtml implements HtmlTemplateInterface |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $htmlTemplateName; |
||
22 | |||
23 | /** |
||
24 | * Class constructor |
||
25 | * @param string $htmlTemplateName |
||
26 | */ |
||
27 | 2 | public function __construct($htmlTemplateName) |
|
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | 1 | public function getHtmlTemplateName() |
|
39 | } |
||
40 |