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