| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 33 | protected function renderView($template = '', array $variables = []) :string |
||
| 34 | { |
||
| 35 | /** @var Config $config */ |
||
| 36 | $config = $this->getServiceLocator()->get(Config::class); |
||
| 37 | |||
| 38 | $templatePath = $config->get('viewsRoot') . '/helper'; |
||
| 39 | |||
| 40 | return (new ViewController())->setTemplate($templatePath . $template)->setVariables($variables)->render(); |
||
| 41 | } |
||
| 42 | |||
| 69 | } |