Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class EtlExecutionHandler implements MessageHandlerInterface |
||
11 | { |
||
12 | /** @var ChainProcessorsManager */ |
||
13 | protected $chainProcessorManager; |
||
14 | |||
15 | /** @var EtlExecutionRepository */ |
||
16 | protected $etlExecutionRepository; |
||
17 | |||
18 | /** |
||
19 | * EtlExecutionHandler constructor. |
||
20 | * @param ChainProcessorsManager $chainProcessorManager |
||
21 | * @param EtlExecutionRepository $etlExecutionRepository |
||
22 | */ |
||
23 | public function __construct(ChainProcessorsManager $chainProcessorManager, EtlExecutionRepository $etlExecutionRepository) |
||
27 | } |
||
28 | |||
29 | public function __invoke(EtlExecutionMessage $message) |
||
35 |