@@ -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]]; |