| 1 | <?php declare(strict_types=1); |
||
| 9 | class ConfigFileFinder |
||
| 10 | { |
||
| 11 | const VALID_FILE_NAME_GLOB = '.psh.*'; |
||
| 12 | |||
| 13 | public function discoverFile(string $fromDirectory): string |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string[] $configFiles |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | private function preferNonDistributionFiles(array $configFiles): string |
||
| 43 | } |
||
| 44 |