for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Oliverde8\Component\PhpEtl\Factory;
use Oliverde8\Component\PhpEtl\Model\ExecutionInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
class NullLoggerFactory implements LoggerFactoryInterface
{
public function get(ExecutionInterface $execution): LoggerInterface
return new NullLogger();
}