| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | class DTOFacade implements DTOFacadeInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @param GeneratorFactoryInterface $generatorFactory |
||
| 22 | */ |
||
| 23 | 2 | public function __construct(private readonly GeneratorFactoryInterface $generatorFactory) |
|
| 25 | 2 | } |
|
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritDoc} |
||
| 29 | */ |
||
| 30 | 1 | public function generate(): void |
|
| 35 |