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\Http;
use Noiselabs\ZfDebugModule\Controller\Http\IndexController;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
* IndexControllerFactory creates instances of IndexController.
class IndexControllerFactory implements FactoryInterface
{
const SERVICE_NAME = IndexController::class;
* {@inheritdoc}
public function createService(ServiceLocatorInterface $serviceLocator)
return new IndexController();
}