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