for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Application\Service\Exporter;
use Interop\Container\ContainerInterface;
class CsvFactory
{
public function __invoke(ContainerInterface $container)
return new Csv();
}