Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class ReportConfigurationProcessor implements ReportConfigurationProcessorInterface |
||
13 | { |
||
14 | use LoggerAwareTrait; |
||
15 | |||
16 | /** @var ReportConfigurationProviderInterface */ |
||
17 | private $reportConfigurationProvider; |
||
18 | |||
19 | /** @var MessageBusInterface */ |
||
20 | private $commandBus; |
||
21 | |||
22 | public function __construct(ReportConfigurationProviderInterface $reportConfigurationProvider, MessageBusInterface $commandBus) |
||
26 | } |
||
27 | |||
28 | public function process(): void |
||
42 |