| Total Complexity | 3 |
| Total Lines | 46 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class FilesystemFacade |
||
| 11 | { |
||
| 12 | public function __construct( |
||
| 13 | private EventDispatcherInterface $dispatcher, |
||
| 14 | ) {} |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param array<string> $paths |
||
| 18 | * @param array<string> $extensions |
||
| 19 | * @param array<string> $ignore |
||
| 20 | * @return iterable<Compiler\InputInterface> |
||
| 21 | */ |
||
| 22 | public function getFilesystemInput(string $cwd, array $paths, array $extensions, array $ignore): iterable |
||
| 56 | } |
||
| 57 | } |
||
| 59 |