Completed
Push — master ( 197f46...f51c73 )
by Scott
02:54
created
formwidgets/DriverConfig.php 1 patch
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,10 +154,14 @@
 block discarded – undo
154 154
         }
155 155
 
156 156
         // if the driver defined it's own save method, call it
157
-        if (method_exists($driver, 'save')) $driver->save($data);
157
+        if (method_exists($driver, 'save')) {
158
+            $driver->save($data);
159
+        }
158 160
 
159 161
         // otherwise just use the default save
160
-        else $this->save($driverClass, $data);
162
+        else {
163
+            $this->save($driverClass, $data);
164
+        }
161 165
     }
162 166
 
163 167
     /**
Please login to merge, or discard this patch.
traits/LangJsonable.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 
25 25
             // 'form@backend::lang.form' => ['cancel', 'save', 'saving']
26 26
             else {
27
-                if (! $isFiltered) {
27
+                if (!$isFiltered) {
28 28
                     $key = $value;
29 29
                 }
30 30
 
Please login to merge, or discard this patch.