| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | 1 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
| 16 | { |
||
| 17 | 1 | $entityManager = $container->get('doctrine.entitymanager.orm_default'); |
|
| 18 | |||
| 19 | 1 | $config = $container->get('config')['svycka_social_user']; |
|
| 20 | $options = [ |
||
| 21 | 1 | 'social_user_entity' => $config['social_user_entity'], |
|
| 22 | ]; |
||
| 23 | |||
| 24 | 1 | return new Doctrine($entityManager, $options); |
|
| 25 | } |
||
| 26 | } |
||
| 27 |