| 1 | <?php |
||
| 9 | class TemplateProcessor |
||
| 10 | { |
||
| 11 | /** @var TemplateFileProcessor */ |
||
| 12 | private $templateFileProcessor; |
||
| 13 | /** @var TemplateFolderProcessor */ |
||
| 14 | private $templateFolderProcessor; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param TemplateHelper $templateHelper |
||
| 18 | */ |
||
| 19 | public function __construct(TemplateHelper $templateHelper) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param string $templatePath |
||
| 27 | * @param string $outputDir |
||
| 28 | */ |
||
| 29 | public function process($templatePath, $outputDir = '.') |
||
| 37 | } |
||
| 38 |