| Total Complexity | 4 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class DelegatingDataFetcher implements DelegatingDataFetcherInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * DataFetcher registry. |
||
| 21 | */ |
||
| 22 | protected ServiceRegistryInterface $registry; |
||
| 23 | |||
| 24 | public function __construct(ServiceRegistryInterface $registry) |
||
| 27 | } |
||
| 28 | |||
| 29 | public function fetch(ReportInterface $report, array $configuration = []): Data |
||
| 35 | } |
||
| 36 | |||
| 37 | public function getDataFetcher(ReportInterface $report): DataFetcherInterface |
||
| 45 |