@@ -61,7 +61,7 @@ |
||
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 |
@@ -153,7 +153,7 @@ discard block |
||
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 |
||
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 |
@@ -9,7 +9,7 @@ |
||
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)) { |