Passed
Pull Request — master (#7)
by Enjoys
02:30
created
src/ValuesHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
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]];
Please login to merge, or discard this patch.