| Total Complexity | 4 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class ConfigurationFinder implements ConfigurationFinderInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var \Symfony\Component\Finder\Finder |
||
| 17 | */ |
||
| 18 | protected $symfonyFinder; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var \Dandelion\Filesystem\FilesystemInterface |
||
| 22 | */ |
||
| 23 | protected $filesystem; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param \Symfony\Component\Finder\Finder $symfonyFinder |
||
| 27 | * @param \Dandelion\Filesystem\FilesystemInterface $filesystem |
||
| 28 | */ |
||
| 29 | public function __construct( |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @return \SplFileInfo |
||
| 39 | * |
||
| 40 | * @throws \Dandelion\Exception\ConfigurationFileNotFoundException |
||
| 41 | * @throws \Exception |
||
| 42 | */ |
||
| 43 | public function find(): SplFileInfo |
||
| 64 |