Passed
Push — develop ( d6706d...7ec088 )
by nguereza
10:59
created
src/FileLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
      */
129 129
     protected function parse(string $env): array
130 130
     {
131
-        $environments = array_filter((array)preg_split('/(\/|\.)/', $env));
131
+        $environments = array_filter((array) preg_split('/(\/|\.)/', $env));
132 132
         array_unshift($environments, '');
133 133
 
134 134
         return $environments;
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
      */
106 106
     public function get(string $key, mixed $default = null): mixed
107 107
     {
108
-        list($group, ) = $this->parseKey($key);
108
+        list($group,) = $this->parseKey($key);
109 109
         $this->load($group);
110 110
 
111 111
         return Arr::get($this->items, $key, $default);
Please login to merge, or discard this patch.