Passed
Push — master ( 7ec57e...c93b57 )
by Iman
04:01
created
src/helpers/CRUDBooster.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     {
76 76
         $table = self::parseSqlTable($table)['table'];
77 77
 
78
-        if (! is_array($id)) {
78
+        if (!is_array($id)) {
79 79
             $id = [DbInspector::findPK($table) => $id];
80 80
         }
81 81
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $controllerName = basename($controllerName);
95 95
         $routeUrl = route($controllerName.'GetIndex');
96 96
 
97
-        if (! $path) {
97
+        if (!$path) {
98 98
             return trim($routeUrl, '/');
99 99
         }
100 100
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     {
120 120
         $tables = DbInspector::listTables();
121 121
 
122
-        $filter = function ($tableName) {
122
+        $filter = function($tableName) {
123 123
 
124 124
             if ($tableName == config('database.migrations')) {
125 125
                 return false;
Please login to merge, or discard this patch.