From 8b20094e6c9f8574faf60d7d6d6f86e816b07c58 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Fri, 18 Jan 2013 01:46:28 +0700 Subject: [PATCH 1/2] remove surplus namespace because already defined in 'use' statement --- library/Zend/Mvc/Router/Console/Catchall.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Zend/Mvc/Router/Console/Catchall.php b/library/Zend/Mvc/Router/Console/Catchall.php index 6323c83788f..eee27b28c50 100644 --- a/library/Zend/Mvc/Router/Console/Catchall.php +++ b/library/Zend/Mvc/Router/Console/Catchall.php @@ -72,12 +72,12 @@ class Catchall implements RouteInterface protected $assembledParams = array(); /** - * @var \Zend\Validator\ValidatorChain + * @var ValidatorChain */ protected $validators; /** - * @var \Zend\Filter\FilterChain + * @var FilterChain */ protected $filters; From 61452b28115611feb6f2b274655706312b9293ae Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Sat, 19 Jan 2013 05:45:39 +0700 Subject: [PATCH 2/2] remove deep namespace docblock in ControllerLoaderFactory.php --- library/Zend/Mvc/Service/ControllerLoaderFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Zend/Mvc/Service/ControllerLoaderFactory.php b/library/Zend/Mvc/Service/ControllerLoaderFactory.php index c6f7a80708c..4eb8146ec6c 100644 --- a/library/Zend/Mvc/Service/ControllerLoaderFactory.php +++ b/library/Zend/Mvc/Service/ControllerLoaderFactory.php @@ -25,7 +25,7 @@ class ControllerLoaderFactory implements FactoryInterface /** * Create the controller loader service * - * Creates and returns an instance of Controller\ControllerManager. The + * Creates and returns an instance of ControllerManager. The * only controllers this manager will allow are those defined in the * application configuration's "controllers" array. If a controller is * matched, the scoped manager will attempt to load the controller.