1 | <?php declare(strict_types=1); |
||
9 | class ConfigFileFinder |
||
10 | { |
||
11 | const VALID_FILE_NAME_GLOB = '.psh.*'; |
||
12 | |||
13 | /** |
||
14 | * @param string $fromDirectory |
||
15 | * @return String[] |
||
16 | */ |
||
17 | public function discoverFiles(string $fromDirectory): array |
||
32 | |||
33 | /** |
||
34 | * @param string[] $configFiles |
||
35 | * @return string |
||
36 | */ |
||
37 | private function preferNonDistributionFiles(array $configFiles): string |
||
47 | } |
||
48 |