for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @link https://github.com/nnx-framework/doctrine-fixture-module
* @author Malofeykin Andrey <[email protected]>
*/
namespace Nnx\DoctrineFixtureModule\Executor;
use Zend\ServiceManager\FactoryInterface;
use Zend\ServiceManager\ServiceLocatorInterface;
* Class FixtureExecutorBuilderFactory
*
* @package Nnx\DoctrineFixtureModule\Executor
class FixtureExecutorBuilderFactory implements FactoryInterface
{
* @inheritDoc
public function createService(ServiceLocatorInterface $serviceLocator)
return new FixtureExecutorBuilder();
}