for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jellyfish\FinderSymfony;
use Jellyfish\Finder\FinderFactoryInterface;
use Jellyfish\Finder\FinderInterface;
use Symfony\Component\Finder\Finder as SymfonyFinder;
class FinderFactory implements FinderFactoryInterface
{
/**
* @return \Jellyfish\Finder\FinderInterface
*/
public function create(): FinderInterface
return new Finder($this->createSymfonyFinder());
}
* @return \Symfony\Component\Finder\Finder
protected function createSymfonyFinder(): SymfonyFinder
return new SymfonyFinder();