1 | <?php |
||
2 | |||
3 | declare(strict_types=1); |
||
4 | |||
5 | namespace Gember\FileFinderSymfony; |
||
6 | |||
7 | use Symfony\Component\Finder\Finder; |
||
8 | |||
9 | final readonly class SymfonyFinderFactory |
||
0 ignored issues
–
show
Bug
introduced
by
![]() |
|||
10 | { |
||
11 | 1 | public function createFinder(): Finder |
|
12 | { |
||
13 | 1 | return new Finder(); |
|
14 | } |
||
15 | } |
||
16 |