| Total Complexity | 4 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | class DefaultRenderer implements TemplateRenderer |
||
| 22 | { |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Renders the template |
||
| 26 | * @param string $view |
||
| 27 | * @param array $params |
||
| 28 | * @param array $configs |
||
| 29 | * @return string |
||
| 30 | * @throws \Quantum\Exceptions\DiException |
||
| 31 | * @throws \Quantum\Exceptions\ViewException |
||
| 32 | * @throws \ReflectionException |
||
| 33 | */ |
||
| 34 | public function render(string $view, array $params = [], array $configs = []): string |
||
| 59 | } |