@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | |
51 | 51 | $props = array_get(DefaultFormConfigs::defaultConfigForFields($table), FieldDetector::detect($colName), null); |
52 | 52 | |
53 | - if($props !== null){ |
|
53 | + if ($props !== null) { |
|
54 | 54 | $input = array_merge($input, $props); |
55 | 55 | } |
56 | 56 | |
@@ -92,8 +92,8 @@ discard block |
||
92 | 92 | $arr = array_get([ |
93 | 93 | 'string' => $default, |
94 | 94 | 'text' => ['textarea', "string|min:5", []], |
95 | - 'date' => ['date', "date", ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY',]], |
|
96 | - 'datetime' => ['datetime', "date_format:Y-m-d H:i:s", ['php_format' => 'M, d Y H:i',]], |
|
95 | + 'date' => ['date', "date", ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY', ]], |
|
96 | + 'datetime' => ['datetime', "date_format:Y-m-d H:i:s", ['php_format' => 'M, d Y H:i', ]], |
|
97 | 97 | 'time' => ['time', 'date_format:H:i:s', []], |
98 | 98 | 'double' => ['money', "integer|min:0", []], |
99 | 99 | 'int' => ['number', 'integer|min:0', []], |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | private static function handleForeignKey($field) |
114 | 114 | { |
115 | 115 | $jointable = str_replace(['id_', '_id'], '', $field); |
116 | - if (! Schema::hasTable($jointable)) { |
|
116 | + if (!Schema::hasTable($jointable)) { |
|
117 | 117 | return ['', '']; |
118 | 118 | } |
119 | 119 | $options = [ |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | return $colsItem; |
68 | 68 | } |
69 | 69 | foreach ($colsItem as $i => $form) { |
70 | - if ( empty($form['options']) !== false && $form['options'] !== '[]') { |
|
70 | + if (empty($form['options']) !== false && $form['options'] !== '[]') { |
|
71 | 71 | @eval("\$options = $form[options];"); |
72 | 72 | @$colsItem[$i]['options'] = $options; |
73 | 73 | } else { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | continue; |
110 | 110 | } |
111 | 111 | |
112 | - $s = str_replace("'", '',$s); |
|
112 | + $s = str_replace("'", '', $s); |
|
113 | 113 | list($key, $val) = explode('=>', $s); |
114 | 114 | $colInnerItem[$key] = $val; |
115 | 115 |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | { |
19 | 19 | $row = $data->first(); |
20 | 20 | |
21 | - if (! $row) { |
|
21 | + if (!$row) { |
|
22 | 22 | return ApiResponder::makeResult(0, 'There is no data found !'); |
23 | 23 | } |
24 | 24 | |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | self::passwordError($posts, $ctrl); |
41 | 41 | } |
42 | 42 | |
43 | - if (! $required && $used && $value) { |
|
43 | + if (!$required && $used && $value) { |
|
44 | 44 | self::passwordError($posts, $ctrl); |
45 | 45 | } |
46 | 46 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | { |
70 | 70 | $result = ApiResponder::makeResult(1, 'success'); |
71 | 71 | |
72 | - return array_merge($result, (array)$rows); |
|
72 | + return array_merge($result, (array) $rows); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | /** |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | $rows->$k = asset($v); |
84 | 84 | } |
85 | 85 | |
86 | - if (! in_array($k, $responsesFields)) { |
|
86 | + if (!in_array($k, $responsesFields)) { |
|
87 | 87 | unset($rows->$k); |
88 | 88 | } |
89 | 89 | } |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | { |
11 | 11 | public function uploadFile($name) |
12 | 12 | { |
13 | - if (! Request::hasFile($name)) { |
|
13 | + if (!Request::hasFile($name)) { |
|
14 | 14 | return null; |
15 | 15 | } |
16 | 16 | $file = Request::file($name); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | private function validateExtension($ext) |
35 | 35 | { |
36 | - if (! FieldDetector::isUploadField($ext)) { |
|
36 | + if (!FieldDetector::isUploadField($ext)) { |
|
37 | 37 | sendAndTerminate(response()->json("The filetype is not allowed!")); |
38 | 38 | } |
39 | 39 | } |
@@ -23,7 +23,7 @@ |
||
23 | 23 | public function handle($result, $table) |
24 | 24 | { |
25 | 25 | $orderby = $this->ctrl->orderby; |
26 | - if (! $orderby) { |
|
26 | + if (!$orderby) { |
|
27 | 27 | $result->orderby($table.'.'.$this->ctrl->primaryKey, 'desc'); |
28 | 28 | return; |
29 | 29 | } |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | public static function first($table, $id) |
97 | 97 | { |
98 | 98 | $table = self::parseSqlTable($table)['table']; |
99 | - if (! is_array($id)) { |
|
99 | + if (!is_array($id)) { |
|
100 | 100 | $pk = DbInspector::findPK($table); |
101 | 101 | |
102 | 102 | return DB::table($table)->where($pk, $id)->first(); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | $controllerName = basename($controllerName); |
123 | 123 | $routeUrl = route($controllerName.'GetIndex'); |
124 | 124 | |
125 | - if (! $path) { |
|
125 | + if (!$path) { |
|
126 | 126 | return trim($routeUrl, '/'); |
127 | 127 | } |
128 | 128 | |
@@ -152,7 +152,7 @@ discard block |
||
152 | 152 | { |
153 | 153 | $tables = DbInspector::listTables(); |
154 | 154 | |
155 | - $filter = function ($tableName) { |
|
155 | + $filter = function($tableName) { |
|
156 | 156 | |
157 | 157 | if ($tableName == config('database.migrations')) { |
158 | 158 | return false; |
@@ -60,7 +60,7 @@ |
||
60 | 60 | { |
61 | 61 | $methods = (new \ReflectionClass($ctrl))->getMethods(\ReflectionMethod::IS_PUBLIC); |
62 | 62 | |
63 | - return array_filter($methods, function ($method) { |
|
63 | + return array_filter($methods, function($method) { |
|
64 | 64 | return ($method->class !== 'Illuminate\Routing\Controller' && $method->name !== 'getIndex'); |
65 | 65 | }); |
66 | 66 | } |
@@ -58,7 +58,7 @@ |
||
58 | 58 | */ |
59 | 59 | private function limitRows($data) |
60 | 60 | { |
61 | - $num = (int)$data['limit'] ?: 10; |
|
61 | + $num = (int) $data['limit'] ?: 10; |
|
62 | 62 | $this->rows->take($num); |
63 | 63 | } |
64 | 64 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | $format_validation[] = $this->existOrUnique($config, $type); |
28 | 28 | } elseif (in_array($type, ['date_format', 'digits_between', 'in', 'mimes', 'min', 'max', 'not_in'])) { |
29 | 29 | $format_validation[] = $type.':'.$config; |
30 | - } elseif (! in_array($type, $typeExcept)) { |
|
30 | + } elseif (!in_array($type, $typeExcept)) { |
|
31 | 31 | $format_validation[] = $type; |
32 | 32 | } |
33 | 33 |