Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types = 1); |
||
20 | 19 | protected function createConfigurators(): array |
|
21 | { |
||
22 | return [ |
||
23 | 19 | new EventStoreConfigurator($this->containerBuilder), |
|
24 | 19 | new ProjectionManagerConfigurator($this->containerBuilder), |
|
25 | 19 | new EventSourcingConfigurator($this->containerBuilder), |
|
26 | 19 | new ServiceBusesConfigurator($this->containerBuilder), |
|
27 | 19 | new AsynchronousMessagesConfigurator($this->containerBuilder), |
|
28 | ]; |
||
29 | } |
||
30 | |||
36 |