Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class FinderFactory implements FinderFactoryInterface |
||
12 | { |
||
13 | /** |
||
14 | * @return \Jellyfish\Finder\FinderInterface |
||
15 | */ |
||
16 | public function create(): FinderInterface |
||
17 | { |
||
18 | return new Finder($this->createSymfonyFinder()); |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @return \Symfony\Component\Finder\Finder |
||
23 | */ |
||
24 | protected function createSymfonyFinder(): SymfonyFinder |
||
27 | } |
||
28 | } |
||
29 |