@@ -25,8 +25,8 @@ discard block |
||
| 25 | 25 | $this->checkLaravelVersion(); |
| 26 | 26 | $this->checkPHPversion(); |
| 27 | 27 | |
| 28 | - $extensions = ['mbstring', 'openssl', 'pdo', 'tokenizer', 'xml', 'gd', 'fileinfo',]; |
|
| 29 | - array_walk($extensions, function ($ext){ |
|
| 28 | + $extensions = ['mbstring', 'openssl', 'pdo', 'tokenizer', 'xml', 'gd', 'fileinfo', ]; |
|
| 29 | + array_walk($extensions, function($ext) { |
|
| 30 | 30 | $this->chechExtension($ext); |
| 31 | 31 | }); |
| 32 | 32 | |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | */ |
| 75 | 75 | private function chechExtension($extension) |
| 76 | 76 | { |
| 77 | - if (! extension_loaded($extension)) { |
|
| 77 | + if (!extension_loaded($extension)) { |
|
| 78 | 78 | $this->console->info($extension.' extension: [Bad]'); |
| 79 | 79 | return $this->requirements = false; |
| 80 | 80 | } |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | |
| 184 | 184 | $json = []; |
| 185 | 185 | for ($i = 0, $_count = count($params_name); $i <= $_count; $i++) { |
| 186 | - if (! $params_name[$i]) { |
|
| 186 | + if (!$params_name[$i]) { |
|
| 187 | 187 | continue; |
| 188 | 188 | } |
| 189 | 189 | $json[] = [ |
@@ -210,7 +210,7 @@ discard block |
||
| 210 | 210 | |
| 211 | 211 | $json = []; |
| 212 | 212 | for ($i = 0, $_count = count($responses_name); $i <= $_count; $i++) { |
| 213 | - if (! $responses_name[$i]) { |
|
| 213 | + if (!$responses_name[$i]) { |
|
| 214 | 214 | continue; |
| 215 | 215 | } |
| 216 | 216 | $json[] = [ |
@@ -84,7 +84,7 @@ |
||
| 84 | 84 | $parameters = unserialize($parameters); |
| 85 | 85 | $formdata = []; |
| 86 | 86 | $httpbuilder = []; |
| 87 | - if (! $parameters) { |
|
| 87 | + if (!$parameters) { |
|
| 88 | 88 | return [$httpbuilder, $formdata]; |
| 89 | 89 | } |
| 90 | 90 | foreach ($parameters as $p) { |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | $data = compact('controllerName', 'table', 'pk', 'coloms', 'cols', 'formArrayString', 'joinList'); |
| 64 | 64 | |
| 65 | - return '<?php ' . view('CbModulesGen::controller_stub', $data)->render(); |
|
| 65 | + return '<?php '.view('CbModulesGen::controller_stub', $data)->render(); |
|
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | /** |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | */ |
| 74 | 74 | private static function addCol($table, $coloms, $pk) |
| 75 | 75 | { |
| 76 | - $coloms_col = array_filter($coloms, function ($field) { |
|
| 77 | - return (! FieldDetector::isExceptional($field) && ! FieldDetector::isPassword($field)); |
|
| 76 | + $coloms_col = array_filter($coloms, function($field) { |
|
| 77 | + return (!FieldDetector::isExceptional($field) && !FieldDetector::isPassword($field)); |
|
| 78 | 78 | }); |
| 79 | 79 | $coloms_col = array_slice($coloms_col, 0, 10); |
| 80 | 80 | |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | { |
| 110 | 110 | $jointable = str_replace(['id_', '_id'], '', $field); |
| 111 | 111 | |
| 112 | - if (! Schema::hasTable($jointable)) { |
|
| 112 | + if (!Schema::hasTable($jointable)) { |
|
| 113 | 113 | return [$cols, $joinList]; |
| 114 | 114 | } |
| 115 | 115 | $joincols = \Schema::getColumnListing($jointable); |
@@ -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 | |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | { |
| 45 | 45 | $ctrl->hookValidate(); |
| 46 | 46 | |
| 47 | - if (! $ctrl->validate) { |
|
| 47 | + if (!$ctrl->validate) { |
|
| 48 | 48 | return true; |
| 49 | 49 | } // hook have to return true |
| 50 | 50 | |
@@ -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 | } |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | } |
| 61 | 61 | ApiResponder::send($result, $posts, $this->ctrl); |
| 62 | 62 | } elseif (in_array($actionType, ['save_add', 'save_edit'])) { |
| 63 | - $rowAssign = array_filter($input_validator, function ($column) use ($table) { |
|
| 63 | + $rowAssign = array_filter($input_validator, function($column) use ($table) { |
|
| 64 | 64 | return Schema::hasColumn($table, $column); |
| 65 | 65 | }, ARRAY_FILTER_USE_KEY); |
| 66 | 66 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | */ |
| 114 | 114 | private function filterRows($data, $parameters, $posts, $table, $typeExcept) |
| 115 | 115 | { |
| 116 | - $data->where(function ($w) use ($parameters, $posts, $table, $typeExcept) { |
|
| 116 | + $data->where(function($w) use ($parameters, $posts, $table, $typeExcept) { |
|
| 117 | 117 | foreach ($parameters as $param) { |
| 118 | 118 | $name = $param['name']; |
| 119 | 119 | $type = $param['type']; |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | */ |
| 252 | 252 | private function applyLike($data, $search_in, $value) |
| 253 | 253 | { |
| 254 | - $data->where(function ($w) use ($search_in, $value) { |
|
| 254 | + $data->where(function($w) use ($search_in, $value) { |
|
| 255 | 255 | foreach ($search_in as $k => $field) { |
| 256 | 256 | $method = 'orWhere'; |
| 257 | 257 | if ($k == 0) { |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | */ |
| 273 | 273 | private function joinRelatedTables($table, $responsesFields, $name, $data, $nameTmp) |
| 274 | 274 | { |
| 275 | - if (! DbInspector::isForeignKey($name)) { |
|
| 275 | + if (!DbInspector::isForeignKey($name)) { |
|
| 276 | 276 | return $nameTmp; |
| 277 | 277 | } |
| 278 | 278 | $joinTable = DbInspector::getTableForeignKey($name); |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | private function doValidation($inputValidator, $dataValidation, $posts) |
| 298 | 298 | { |
| 299 | 299 | $validator = Validator::make($inputValidator, $dataValidation); |
| 300 | - if (! $validator->fails()) { |
|
| 300 | + if (!$validator->fails()) { |
|
| 301 | 301 | return true; |
| 302 | 302 | } |
| 303 | 303 | $message = $validator->errors()->all(); |
@@ -313,11 +313,11 @@ discard block |
||
| 313 | 313 | */ |
| 314 | 314 | private function filterRedundantResp($responses) |
| 315 | 315 | { |
| 316 | - $responses = array_filter($responses, function ($resp) { |
|
| 317 | - return ! ($resp['name'] == 'ref_id' || $resp['type'] == 'custom'); |
|
| 316 | + $responses = array_filter($responses, function($resp) { |
|
| 317 | + return !($resp['name'] == 'ref_id' || $resp['type'] == 'custom'); |
|
| 318 | 318 | }); |
| 319 | 319 | |
| 320 | - $responses = array_filter($responses, function ($resp) { |
|
| 320 | + $responses = array_filter($responses, function($resp) { |
|
| 321 | 321 | return (intval($resp['used']) != 0 || DbInspector::isForeignKey($resp['name'])); |
| 322 | 322 | }); |
| 323 | 323 | |
@@ -332,15 +332,15 @@ discard block |
||
| 332 | 332 | private function validateParams($parameters, $table) |
| 333 | 333 | { |
| 334 | 334 | $posts = request()->all(); |
| 335 | - if (! $parameters) { |
|
| 335 | + if (!$parameters) { |
|
| 336 | 336 | return ['', '']; |
| 337 | 337 | } |
| 338 | 338 | $typeExcept = ['password', 'ref', 'base64_file', 'custom', 'search']; |
| 339 | 339 | $inputValidator = []; |
| 340 | 340 | $dataValidation = []; |
| 341 | 341 | |
| 342 | - $parameters = array_filter($parameters, function ($param){ |
|
| 343 | - return !(is_string($param['config'])&& !starts_with($param['config'], '*')); |
|
| 342 | + $parameters = array_filter($parameters, function($param) { |
|
| 343 | + return !(is_string($param['config']) && !starts_with($param['config'], '*')); |
|
| 344 | 344 | }); |
| 345 | 345 | |
| 346 | 346 | foreach ($parameters as $param) { |