for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Oliverde8\Component\PhpEtl;
use Oliverde8\Component\PhpEtl\Model\ExecutionContext;
use Oliverde8\Component\PhpEtl\Model\File\LocalFileSystem;
class ExecutionContextFactory implements ExecutionContextFactoryInterface
{
public function get(array $parameters): ExecutionContext
return new ExecutionContext($parameters, new LocalFileSystem());
}