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

Commit

Permalink
Merge pull request #5762
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Feb 19, 2014
2 parents 1af6ed6 + 84b66d5 commit 9c40657
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 57 deletions.
15 changes: 0 additions & 15 deletions library/Zend/Mvc/Service/ControllerPluginManagerFactory.php
Expand Up @@ -9,22 +9,7 @@

namespace Zend\Mvc\Service;

use Zend\Mvc\Controller\PluginManager;
use Zend\ServiceManager\ServiceLocatorInterface;

class ControllerPluginManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\Mvc\Controller\PluginManager';

/**
* Create and return the MVC controller plugin manager
*
* @param ServiceLocatorInterface $serviceLocator
* @return PluginManager
*/
public function createService(ServiceLocatorInterface $serviceLocator)
{
$plugins = parent::createService($serviceLocator);
return $plugins;
}
}
14 changes: 0 additions & 14 deletions library/Zend/Mvc/Service/FilterManagerFactory.php
Expand Up @@ -9,21 +9,7 @@

namespace Zend\Mvc\Service;

use Zend\ServiceManager\ServiceLocatorInterface;

class FilterManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\Filter\FilterPluginManager';

/**
* Create and return the filter plugin manager
*
* @param ServiceLocatorInterface $serviceLocator
* @return \Zend\Filter\FilterPluginManager
*/
public function createService(ServiceLocatorInterface $serviceLocator)
{
$plugins = parent::createService($serviceLocator);
return $plugins;
}
}
14 changes: 0 additions & 14 deletions library/Zend/Mvc/Service/PaginatorPluginManagerFactory.php
Expand Up @@ -9,21 +9,7 @@

namespace Zend\Mvc\Service;

use Zend\ServiceManager\ServiceLocatorInterface;

class PaginatorPluginManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\Paginator\AdapterPluginManager';

/**
* Create and return the MVC controller plugin manager
*
* @param ServiceLocatorInterface $serviceLocator
* @return \Zend\Paginator\AdapterPluginManager
*/
public function createService(ServiceLocatorInterface $serviceLocator)
{
$plugins = parent::createService($serviceLocator);
return $plugins;
}
}
14 changes: 0 additions & 14 deletions library/Zend/Mvc/Service/ValidatorManagerFactory.php
Expand Up @@ -9,21 +9,7 @@

namespace Zend\Mvc\Service;

use Zend\ServiceManager\ServiceLocatorInterface;

class ValidatorManagerFactory extends AbstractPluginManagerFactory
{
const PLUGIN_MANAGER_CLASS = 'Zend\Validator\ValidatorPluginManager';

/**
* Create and return the validator plugin manager
*
* @param ServiceLocatorInterface $serviceLocator
* @return \Zend\Validator\ValidatorPluginManager
*/
public function createService(ServiceLocatorInterface $serviceLocator)
{
$plugins = parent::createService($serviceLocator);
return $plugins;
}
}

0 comments on commit 9c40657

Please sign in to comment.