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