| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 1 | public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null) |
|
| 24 | { |
||
| 25 | 1 | return new AuthenticationService( |
|
| 26 | 1 | $container->get('doctrine.authenticationstorage.' . $this->getName()), |
|
| 27 | 1 | $container->get('doctrine.authenticationadapter.' . $this->getName()) |
|
| 28 | ); |
||
| 29 | } |
||
| 30 | |||
| 41 |