Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PhpEngineFactory implements EngineFactoryInterface |
||
11 | { |
||
12 | private $helperFactory; |
||
13 | private $janitor; |
||
14 | private $templateRenderer; |
||
15 | |||
16 | public function __construct(TemplateRenderer $templateRenderer, HelperVariable $helperFactory, Janitor $janitor) |
||
21 | } |
||
22 | |||
23 | public function create(): AbstractEngine |
||
28 |