| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 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 |