diff --git a/library/Zend/ServiceManager/ServiceManager.php b/library/Zend/ServiceManager/ServiceManager.php index dd6cd96482a..01dbab2fced 100644 --- a/library/Zend/ServiceManager/ServiceManager.php +++ b/library/Zend/ServiceManager/ServiceManager.php @@ -271,7 +271,7 @@ public function addAbstractFactory($factory, $topOfStack = true) 'Provided abstract factory must be the class name of an abstract factory or an instance of an AbstractFactoryInterface.' ); } - $refl = new \ReflectionClass($factory); + $refl = new ReflectionClass($factory); if (!$refl->implementsInterface(__NAMESPACE__ . '\\AbstractFactoryInterface')) { throw new Exception\InvalidArgumentException( 'Provided abstract factory must be the class name of an abstract factory or an instance of an AbstractFactoryInterface.'