Passed
Push — master ( 3388c8...01e728 )
by Iman
08:15 queued 02:52
created
src/Modules/ModuleGenerator/Step2Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $columnScript[] = '            $this->col[] = [];';
62 62
         foreach ($labels as $i => $label) {
63 63
 
64
-            if (! $name[$i]) {
64
+            if (!$name[$i]) {
65 65
                 continue;
66 66
             }
67 67
 
Please login to merge, or discard this patch.
src/helpers/CRUDBooster.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
     public static function first($table, $id)
154 154
     {
155 155
         $table = self::parseSqlTable($table)['table'];
156
-        if (! is_array($id)) {
156
+        if (!is_array($id)) {
157 157
             $pk = self::pk($table);
158 158
 
159 159
             return DB::table($table)->where($pk, $id)->first();
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
         $controllerName = basename($controllerName);
248 248
         $route_url = route($controllerName.'GetIndex');
249 249
 
250
-        if (! $path) {
250
+        if (!$path) {
251 251
             return trim($route_url, '/');
252 252
         }
253 253
 
Please login to merge, or discard this patch.
src/CBCoreModule/ViewHelpers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
         @$get = $_GET;
10 10
         $inputhtml = '';
11 11
 
12
-        if (! $get) {
12
+        if (!$get) {
13 13
             return $inputhtml;
14 14
         }
15 15
         if (is_array($exception)) {
Please login to merge, or discard this patch.