Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cgmartin committed Sep 8, 2012
1 parent a6f8bc6 commit b57d117
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion library/Zend/Mvc/Service/FilterManagerFactory.php
Expand Up @@ -21,7 +21,7 @@
class FilterManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\Filter\FilterPluginManager';

/**
* Create and return the filter plugin manager
*
Expand Down
20 changes: 10 additions & 10 deletions library/Zend/Mvc/Service/ModuleManagerFactory.php
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion library/Zend/Mvc/Service/ValidatorManagerFactory.php
Expand Up @@ -21,7 +21,7 @@
class ValidatorManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\Validator\ValidatorPluginManager';

/**
* Create and return the validator plugin manager
*
Expand Down

0 comments on commit b57d117

Please sign in to comment.