| Total Complexity | 3 | 
| Total Lines | 21 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 7 | class View  | 
            ||
| 8 | { | 
            ||
| 9 | private RendererInterface $renderer;  | 
            ||
| 10 | |||
| 11 | /** @var string is a filename */  | 
            ||
| 12 | private string $template = '';  | 
            ||
| 13 | |||
| 14 | 5 | public function __construct(RendererInterface $renderer)  | 
            |
| 17 | 5 | }  | 
            |
| 18 | |||
| 19 | 5 | public function setTemplate(string $template)  | 
            |
| 22 | 5 | }  | 
            |
| 23 | |||
| 24 | 5 | public function render(array $data): string  | 
            |
| 30 |