@@ -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 | } |
@@ -59,7 +59,7 @@ |
||
59 | 59 | { |
60 | 60 | $result = preg_replace_callback( |
61 | 61 | '/(\${(.+?)})/', |
62 | - function (array $matches) use ($dotenv) { |
|
62 | + function(array $matches) use ($dotenv) { |
|
63 | 63 | /** @var string[] $matches */ |
64 | 64 | Assert::keyExists($dotenv->getEnvArray(), $matches[2], \sprintf('Not found variable ${%s}.', $matches[2])); |
65 | 65 | return $dotenv->getEnvArray()[$matches[2]]; |