From 084f05b1578fbdb800518953ef3b1705c68676aa Mon Sep 17 00:00:00 2001 From: Marco Pivetta Date: Sun, 4 Mar 2012 15:18:12 +0100 Subject: [PATCH] Removing Zend\Mvc\Router\RouteStack instance definition (already defined in Zend\Mvc\Bootstrap --- module/Application/config/module.config.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 41f63b9..7321cde 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,24 +1,6 @@ array( - - 'definition' => array( - 'class' => array( - // Defining how the router should be instantiated. The minimum - // requirement is to implement interface - // Zend\Mvc\Router\RouteStack. Here we are stating that - // Zend\Mvc\Router\Http\TreeRouteStack::factory should generate - // an instance of it. This can be changed to instantiate a - // custom router - 'Zend\Mvc\Router\RouteStack' => array( - 'instantiator' => array( - 'Zend\Mvc\Router\Http\TreeRouteStack', - 'factory' - ), - ), - ), - ), - 'instance' => array( // Setup for controllers. -- 1.7.10.4