Passed
Push — master ( d6115b...f2e66b )
by Miroslaw
52s queued 10s
created
src/Env.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         foreach ($env_lines as $line)
29 29
         {
30 30
             if (strlen(trim($line)) && !(strpos(trim($line), '#') === 0)) {
31
-                [$key, $val] = explode('=', (string)$line);
31
+                [$key, $val] = explode('=', (string) $line);
32 32
                 $this->_envVars[$key] = $this->_stripValue($val);
33 33
             }
34 34
         }
Please login to merge, or discard this patch.
Braces   +15 added lines, -9 removed lines patch added patch discarded remove patch
@@ -42,8 +42,9 @@  discard block
 block discarded – undo
42 42
      */
43 43
     public function exists(string $key): bool
44 44
     {
45
-        if (is_null($this->_envVars))
46
-            $this->_parse();
45
+        if (is_null($this->_envVars)) {
46
+                    $this->_parse();
47
+        }
47 48
 
48 49
         return isset($this->_envVars[$key]);
49 50
     }
@@ -56,8 +57,9 @@  discard block
 block discarded – undo
56 57
      */
57 58
     public function getValue(string $key): string
58 59
     {
59
-        if (is_null($this->_envVars))
60
-            $this->_parse();
60
+        if (is_null($this->_envVars)) {
61
+                    $this->_parse();
62
+        }
61 63
 
62 64
         return $this->_envVars[$key] ?? '';
63 65
     }
@@ -71,8 +73,9 @@  discard block
 block discarded – undo
71 73
      */
72 74
     public function getKeyValue(string $key): array
73 75
     {
74
-        if (is_null($this->_envVars))
75
-            $this->_parse();
76
+        if (is_null($this->_envVars)) {
77
+                    $this->_parse();
78
+        }
76 79
 
77 80
         return [$key => $this->_envVars[$key]] ?? [];
78 81
     }
@@ -99,7 +102,9 @@  discard block
 block discarded – undo
99 102
         $this->_saved = false;
100 103
 
101 104
         $this->_parse();
102
-        if ($write) $this->write();
105
+        if ($write) {
106
+            $this->write();
107
+        }
103 108
 
104 109
         return $this->getValue($key);
105 110
 
@@ -120,8 +125,9 @@  discard block
 block discarded – undo
120 125
             $this->_changed = true;
121 126
             $this->_saved = false;
122 127
 
123
-            if ($write)
124
-                $this->write();
128
+            if ($write) {
129
+                            $this->write();
130
+            }
125 131
 
126 132
         }
127 133
 
Please login to merge, or discard this patch.
src/Commands/EnvSetCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $value = $this->argument('value');
72 72
 
73 73
         if (is_null($value) || !$value) {
74
-            $parts = explode('=', (string)$key, 2);
74
+            $parts = explode('=', (string) $key, 2);
75 75
 
76 76
             if (count($parts) !== 2) {
77 77
                 throw new InvalidArgumentException('No value was set');
@@ -80,15 +80,15 @@  discard block
 block discarded – undo
80 80
             [$key, $value] = $parts;
81 81
         }
82 82
 
83
-        if (Str::contains((string)$key, '=')) {
83
+        if (Str::contains((string) $key, '=')) {
84 84
             throw new InvalidArgumentException("Environment key should not contain '='");
85 85
         }
86 86
 
87
-        if (!$this->isValidKey((string)$key)) {
87
+        if (!$this->isValidKey((string) $key)) {
88 88
             throw new InvalidArgumentException('Invalid argument key');
89 89
         }
90 90
 
91
-        return [(string)$key, (string)$value];
91
+        return [(string) $key, (string) $value];
92 92
     }
93 93
 
94 94
 }
Please login to merge, or discard this patch.