Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
20 | public function createService(ServiceLocatorInterface $serviceLocator) |
||
21 | { |
||
22 | /** @var UserInterface $mapper */ |
||
23 | $mapper = $serviceLocator->get('zfcuser_user_mapper'); |
||
24 | /** @var AuthenticationOptionsInterface $options */ |
||
25 | $options = $serviceLocator->get('zfcuser_module_options'); |
||
26 | return new DbAdapter( |
||
27 | $mapper, |
||
28 | $options |
||
29 | ); |
||
30 | } |
||
31 | } |
||
32 |