1 | <?php |
||
15 | class HtmlWriter extends AbstractWriter |
||
16 | { |
||
17 | /** |
||
18 | * @var string the path to the view files |
||
19 | */ |
||
20 | protected $viewPath; |
||
21 | |||
22 | /** |
||
23 | * HtmlWriter constructor. |
||
24 | */ |
||
25 | public function __construct() |
||
30 | |||
31 | /** |
||
32 | * @inheritdoc |
||
33 | */ |
||
34 | protected function openWriter() |
||
39 | |||
40 | /** |
||
41 | * @inheritdoc |
||
42 | */ |
||
43 | protected function addRowToWriter(array $dataRow, $style) |
||
48 | |||
49 | /** |
||
50 | * @inheritdoc |
||
51 | */ |
||
52 | protected function closeWriter() |
||
57 | } |
||
58 |