From 6074187e88fe491fdf9626ae8ae8244cbcfd5164 Mon Sep 17 00:00:00 2001 From: David Bwire Date: Fri, 9 May 2014 02:38:07 +0300 Subject: [PATCH] Bug Fix Hi, you redeclared the ForgotFactory class. It ought to have been ResetFactory. --- src/GoalioForgotPassword/Form/Service/ResetFactory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/GoalioForgotPassword/Form/Service/ResetFactory.php b/src/GoalioForgotPassword/Form/Service/ResetFactory.php index 1032522..c4830b0 100644 --- a/src/GoalioForgotPassword/Form/Service/ResetFactory.php +++ b/src/GoalioForgotPassword/Form/Service/ResetFactory.php @@ -6,7 +6,7 @@ use Zend\ServiceManager\ServiceLocatorInterface; use Zend\ServiceManager\FactoryInterface; -class ForgotFactory implements FactoryInterface { +class ResetFactory implements FactoryInterface { public function createService(ServiceLocatorInterface $serviceLocator) { $options = $serviceLocator->get('goalioforgotpassword_module_options'); @@ -15,4 +15,4 @@ public function createService(ServiceLocatorInterface $serviceLocator) { return $form; } -} \ No newline at end of file +}