Issues (8)

src/SymfonyFinderFactory.php (1 issue)

Labels
Severity
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
A parse error occurred: Syntax error, unexpected T_READONLY, expecting T_CLASS on line 9 at column 6
Loading history...
10
{
11 1
    public function createFinder(): Finder
12
    {
13 1
        return new Finder();
14
    }
15
}
16