@@ -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 | } |
@@ -56,7 +56,7 @@ |
||
56 | 56 | { |
57 | 57 | $result = preg_replace_callback( |
58 | 58 | '/(\${(.+?)})/', |
59 | - function (array $matches) use ($dotenv) { |
|
59 | + function(array $matches) use ($dotenv) { |
|
60 | 60 | /** @var string[] $matches */ |
61 | 61 | // Assert::notFalse($dotenv->getEnvArray()[$matches[2]] ?? false); |
62 | 62 | return $dotenv->getEnvArray()[$matches[2]]; |