From b57d117ee3d9db97456d4835b693813eb2dfb375 Mon Sep 17 00:00:00 2001 From: Christopher Martin Date: Sat, 8 Sep 2012 12:44:00 -0400 Subject: [PATCH] Cs fixes --- .../Zend/Mvc/Service/FilterManagerFactory.php | 2 +- .../Zend/Mvc/Service/ModuleManagerFactory.php | 20 +++++++++---------- .../Mvc/Service/ValidatorManagerFactory.php | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/library/Zend/Mvc/Service/FilterManagerFactory.php b/library/Zend/Mvc/Service/FilterManagerFactory.php index 17a80d0f6c4..5685c91799a 100644 --- a/library/Zend/Mvc/Service/FilterManagerFactory.php +++ b/library/Zend/Mvc/Service/FilterManagerFactory.php @@ -21,7 +21,7 @@ class FilterManagerFactory extends AbstractPluginManagerFactory { const PLUGIN_MANAGER_CLASS = 'Zend\Filter\FilterPluginManager'; - + /** * Create and return the filter plugin manager * diff --git a/library/Zend/Mvc/Service/ModuleManagerFactory.php b/library/Zend/Mvc/Service/ModuleManagerFactory.php index 54279eea063..2c8a9942bed 100644 --- a/library/Zend/Mvc/Service/ModuleManagerFactory.php +++ b/library/Zend/Mvc/Service/ModuleManagerFactory.php @@ -74,17 +74,17 @@ public function createService(ServiceLocatorInterface $serviceLocator) 'Zend\ModuleManager\Feature\ViewHelperProviderInterface', 'getViewHelperConfig' ); - $serviceListener->addServiceManager( - 'ValidatorManager', - 'validators', - 'Zend\ModuleManager\Feature\ValidatorProviderInterface', - 'getValidatorConfig' + $serviceListener->addServiceManager( + 'ValidatorManager', + 'validators', + 'Zend\ModuleManager\Feature\ValidatorProviderInterface', + 'getValidatorConfig' ); - $serviceListener->addServiceManager( - 'FilterManager', - 'filters', - 'Zend\ModuleManager\Feature\FilterProviderInterface', - 'getFilterConfig' + $serviceListener->addServiceManager( + 'FilterManager', + 'filters', + 'Zend\ModuleManager\Feature\FilterProviderInterface', + 'getFilterConfig' ); $events = $serviceLocator->get('EventManager'); diff --git a/library/Zend/Mvc/Service/ValidatorManagerFactory.php b/library/Zend/Mvc/Service/ValidatorManagerFactory.php index d1c9ce733f7..da41f71712a 100644 --- a/library/Zend/Mvc/Service/ValidatorManagerFactory.php +++ b/library/Zend/Mvc/Service/ValidatorManagerFactory.php @@ -21,7 +21,7 @@ class ValidatorManagerFactory extends AbstractPluginManagerFactory { const PLUGIN_MANAGER_CLASS = 'Zend\Validator\ValidatorPluginManager'; - + /** * Create and return the validator plugin manager *