@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | public function validateForImport($file) |
| 69 | 69 | { |
| 70 | - return Validator::make(['extension' => $file->getClientOriginalExtension(),], ['extension' => 'in:xls,xlsx,csv']); |
|
| 70 | + return Validator::make(['extension' => $file->getClientOriginalExtension(), ], ['extension' => 'in:xls,xlsx,csv']); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | $file = base64_decode(request('file')); |
| 84 | 84 | $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file; |
| 85 | - $rows = Excel::load($file, function ($reader) { |
|
| 85 | + $rows = Excel::load($file, function($reader) { |
|
| 86 | 86 | })->get(); |
| 87 | 87 | |
| 88 | 88 | //$data_import_column = []; |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | foreach ($selectColumn as $sk => $s) { |
| 128 | 128 | $colname = $table_columns[$sk]; |
| 129 | 129 | |
| 130 | - if (! DbInspector::isForeignKey($colname) || intval($value->$s)) { |
|
| 130 | + if (!DbInspector::isForeignKey($colname) || intval($value->$s)) { |
|
| 131 | 131 | $a[$colname] = $value->$s; |
| 132 | 132 | continue; |
| 133 | 133 | } |
@@ -175,10 +175,10 @@ discard block |
||
| 175 | 175 | { |
| 176 | 176 | $module = ModulesRepo::getByTableName($table); |
| 177 | 177 | if (is_null($module)) { |
| 178 | - return ; |
|
| 178 | + return; |
|
| 179 | 179 | } |
| 180 | 180 | $relation_class = __NAMESPACE__.'\\'.$module->controller; |
| 181 | - if (! class_exists($relation_class)) { |
|
| 181 | + if (!class_exists($relation_class)) { |
|
| 182 | 182 | $relation_class = ctrlNamespace().'\\'.$module->controller; |
| 183 | 183 | } |
| 184 | 184 | |
@@ -22,7 +22,7 @@ discard block |
||
| 22 | 22 | $icon = request('icon'); |
| 23 | 23 | $path = request('path'); |
| 24 | 24 | |
| 25 | - if (! request('id')) { |
|
| 25 | + if (!request('id')) { |
|
| 26 | 26 | if (ModulesRepo::modulePathExists($path)) { |
| 27 | 27 | //todo: should be translated |
| 28 | 28 | backWithMsg('Sorry the slug has already exists, please choose another !', 'warning'); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | |
| 40 | 40 | if (file_exists(controller_path($row->controller))) { |
| 41 | 41 | $response = FileManipulator::readCtrlContent(str_replace('.', '', $row->controller)); |
| 42 | - }else{ |
|
| 42 | + } else { |
|
| 43 | 43 | $response = file_get_contents(__DIR__.'Step1Handler.php/'.str_replace('.', '', $row->controller).'.php'); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -27,7 +27,7 @@ |
||
| 27 | 27 | */ |
| 28 | 28 | public static function modulePathExists($path) |
| 29 | 29 | { |
| 30 | - return (boolean)DB::table('cms_moduls')->where('path', $path)->where('deleted_at', null)->count(); |
|
| 30 | + return (boolean) DB::table('cms_moduls')->where('path', $path)->where('deleted_at', null)->count(); |
|
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | public static function updateById($id, $data) |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | public static function getCurrentModule() |
| 25 | 25 | { |
| 26 | 26 | $modulepath = self::getModulePath(); |
| 27 | - return cache()->remember('crudbooster_modules_'.$modulepath, 2, function () use ($modulepath) { |
|
| 27 | + return cache()->remember('crudbooster_modules_'.$modulepath, 2, function() use ($modulepath) { |
|
| 28 | 28 | return ModulesRepo::getByPath(); |
| 29 | 29 | }); |
| 30 | 30 | } |