@@ -64,7 +64,7 @@ |
||
64 | 64 | realpath($this->baseDirectory . $this->envFilename) |
65 | 65 | ]; |
66 | 66 | |
67 | - return array_filter($paths, function ($item) { |
|
67 | + return array_filter($paths, function($item) { |
|
68 | 68 | return is_string($item); |
69 | 69 | }); |
70 | 70 | } |
@@ -46,7 +46,7 @@ |
||
46 | 46 | { |
47 | 47 | return preg_replace_callback( |
48 | 48 | '/(\${(.+?)})/', |
49 | - function (array $matches) { |
|
49 | + function(array $matches) { |
|
50 | 50 | /** @var string[] $matches */ |
51 | 51 | return $this->envArray[$matches[2]] ?? ''; |
52 | 52 | }, |