Conditions | 2 |
Paths | 2 |
Total Lines | 19 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | use ZfcUser\Form; |
||
19 | |||
20 | class ChangePassword implements FactoryInterface |
||
21 | { |
||
22 | public function __invoke(ContainerInterface $serviceManager, $requestedName, array $options = null) |
||
23 | { |
||
24 | $options = $serviceManager->get('zfcuser_module_options'); |
||
25 | $form = new Form\ChangePassword(null, $options); |
||
26 | |||
27 | $form->setInputFilter(new Form\ChangePasswordFilter($options)); |
||
28 | |||
29 | return $form; |
||
30 | } |
||
31 | } |
||
32 |