| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class DelegatingRenderer implements DelegatingRendererInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Renderer registry. |
||
| 21 | */ |
||
| 22 | protected ServiceRegistryInterface $registry; |
||
| 23 | |||
| 24 | public function __construct(ServiceRegistryInterface $registry) |
||
| 25 | { |
||
| 26 | $this->registry = $registry; |
||
| 27 | } |
||
| 28 | |||
| 29 | public function render(ReportInterface $report, Data $data): string |
||
| 34 | } |
||
| 35 | |||
| 36 | public function getRenderer(ReportInterface $report): RendererInterface |
||
| 44 |