| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
| 26 | { |
||
| 27 | /** @var Controller $controller */ |
||
| 28 | $controller = $serviceLocator->get(Controller::class); |
||
| 29 | |||
| 30 | /** @var Config $config */ |
||
| 31 | $config = $serviceLocator->get(Config::class); |
||
| 32 | |||
| 33 | return new AuthenticatorService($controller, $config); |
||
| 34 | } |
||
| 35 | |||
| 36 | } |