for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* ZfDebugModule. Console commands and other utilities for debugging ZF2 apps.
*
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @copyright 2016 Vítor Brandão <[email protected]>
*/
namespace Noiselabs\ZfDebugModule\Factory\Controller\Console;
use Noiselabs\ZfDebugModule\Controller\Console\RoutesController;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
* Console\RoutesControllerFactory creates instances of Console\RoutesController.
class RoutesControllerFactory implements FactoryInterface
{
const SERVICE_NAME = RoutesController::class;
* {@inheritdoc}
public function createService(ServiceLocatorInterface $serviceLocator)
return new RoutesController();
}