Passed
Branch master (16abc9)
by Enjoys
07:40
created
Category
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/ValueHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
     {
47 47
         return preg_replace_callback(
48 48
             '/(\${(.+?)})/',
49
-            function (array $matches) {
49
+            function(array $matches) {
50 50
                 /** @var string[] $matches */
51 51
                 return $this->envArray[$matches[2]] ?? '';
52 52
             },
Please login to merge, or discard this patch.