for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2015-06-04
*/
namespace NetBazzlineZfLocatorGenerator\Service;
use Net\Bazzline\Component\Locator\ProcessPipeFactory as InstanceFactory;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
class ProcessPipeFactory implements FactoryInterface
{
* Create service
*
* @param ServiceLocatorInterface $serviceLocator
* @return mixed|\Net\Bazzline\Component\ProcessPipe\Pipe
public function createService(ServiceLocatorInterface $serviceLocator)
$factory = new InstanceFactory();
return $factory->create();
}