1 | <?php |
||
11 | abstract class Renderer implements RendererInterface |
||
12 | { |
||
13 | /** |
||
14 | * @var array |
||
15 | */ |
||
16 | protected $profile; |
||
17 | |||
18 | /** |
||
19 | * Renderer constructor. |
||
20 | */ |
||
21 | 88 | public function __construct(array $profile = []) |
|
32 | |||
33 | /** |
||
34 | * @return string |
||
35 | */ |
||
36 | 74 | public function content() |
|
45 | |||
46 | 74 | public function getData() |
|
50 | |||
51 | 18 | public function setData(array $data) |
|
57 | |||
58 | 88 | public function getTemplateFolder() |
|
65 | } |
||
66 |