for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TreeHouse\IoBundle\Import\Importer;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class ImporterBuilderFactory
{
/**
* @param EventDispatcherInterface $dispatcher
*
* @return ImporterBuilderInterface
*/
public function create(EventDispatcherInterface $dispatcher)
return new ImporterBuilder($dispatcher);
}