From 80884b7da866f5136654c83604c1270a3228b7b9 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Thu, 2 May 2013 11:12:31 -0500 Subject: [PATCH] Add Log, Cache abstract factories - Allows us to remove these from the default MVC service configuration so that we do not need to add additional dependencies to that component. --- module/Application/config/module.config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 8d3ce98254..0d00bc5d85 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -53,6 +53,10 @@ ), ), 'service_manager' => array( + 'abstract_factories' => array( + 'Zend\Cache\Service\StorageCacheAbstractServiceFactory', + 'Zend\Log\LoggerAbstractServiceFactory', + ), 'factories' => array( 'translator' => 'Zend\I18n\Translator\TranslatorServiceFactory', ),