Passed
Push — develop ( 43a6b1...17f6f7 )
by nguereza
01:46 queued 13s
created
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      */
107 107
     public function get(string $key, $default = null)
108 108
     {
109
-        list($group, ) = $this->parseKey($key);
109
+        list($group,) = $this->parseKey($key);
110 110
         $this->load($group);
111 111
 
112 112
         return Arr::get($this->items, $key, $default);
Please login to merge, or discard this patch.
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.