Completed
Push — master ( 7a0906...3ff6f8 )
by Ryan
02:30
created
src/Setting/SettingRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,6 +146,6 @@
 block discarded – undo
146 146
      */
147 147
     public function findAllByNamespace($namespace)
148 148
     {
149
-        return $this->model->where('key', 'LIKE', $namespace . '%')->get();
149
+        return $this->model->where('key', 'LIKE', $namespace.'%')->get();
150 150
     }
151 151
 }
Please login to merge, or discard this patch.
src/Setting/Command/ConfigureSystem.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
                 continue;
94 94
             }
95 95
 
96
-            if (!$settings->has($key = 'streams::' . $key)) {
96
+            if (!$settings->has($key = 'streams::'.$key)) {
97 97
                 continue;
98 98
             }
99 99
 
Please login to merge, or discard this patch.