Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
16 | public function process(ContainerBuilder $container) |
||
17 | { |
||
18 | $customEntityManagerId = $container->getParameter('gesdinet.jwtrefreshtoken.entity_manager.id'); |
||
19 | if (!$customEntityManagerId) { |
||
20 | return; |
||
21 | } |
||
22 | |||
23 | //replace the base alias |
||
24 | $container->setAlias('gesdinet.jwtrefreshtoken.entity_manager', $customEntityManagerId); |
||
25 | } |
||
26 | } |
||
27 |