1 | <?php |
||
5 | class EnvironmentFinder |
||
6 | { |
||
7 | /** |
||
8 | * Gets the environment variables defined within $file. |
||
9 | * @param string $file Path and filename. |
||
10 | * @return array |
||
11 | */ |
||
12 | public function getFromFile($file) |
||
20 | |||
21 | /** |
||
22 | * Gets the environment variables defined within the $files. |
||
23 | * @param array $files Array of paths and filenames. |
||
24 | * @return array |
||
25 | */ |
||
26 | public function getFromFiles(array $files) |
||
36 | } |
||
37 |