Total Complexity | 4 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 90.91% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class PrimeConnectionFactoryPass implements CompilerPassInterface |
||
15 | { |
||
16 | use PriorityTaggedServiceTrait; |
||
17 | |||
18 | private $service; |
||
19 | private $tag; |
||
20 | |||
21 | 9 | public function __construct(string $service = ChainFactory::class, string $loaderTag = 'bdf_prime.connection_factory') |
|
22 | { |
||
23 | 9 | $this->service = $service; |
|
24 | 9 | $this->tag = $loaderTag; |
|
25 | 9 | } |
|
26 | |||
27 | 8 | public function process(ContainerBuilder $container) |
|
39 | 7 | } |
|
40 | } |
||
41 |