@@ -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 | |
@@ -24,15 +24,15 @@ discard block |
||
| 24 | 24 | { |
| 25 | 25 | $this->cbLoader(); |
| 26 | 26 | |
| 27 | - $columns = array_filter(\Schema::getColumnListing($table), function ($colName) { |
|
| 28 | - return ! (in_array($colName, ['created_at', 'deleted_at', 'updated_at'])); |
|
| 27 | + $columns = array_filter(\Schema::getColumnListing($table), function($colName) { |
|
| 28 | + return !(in_array($colName, ['created_at', 'deleted_at', 'updated_at'])); |
|
| 29 | 29 | }); |
| 30 | 30 | |
| 31 | 31 | $result = []; |
| 32 | 32 | foreach ($columns as $colName) { |
| 33 | 33 | $result[] = ['name' => $colName, 'type' => $this->getFieldType($colName, $table)]; |
| 34 | 34 | |
| 35 | - if (! in_array($type, ['list', 'detail']) || ! starts_with($colName, 'id_')) { |
|
| 35 | + if (!in_array($type, ['list', 'detail']) || !starts_with($colName, 'id_')) { |
|
| 36 | 36 | continue; |
| 37 | 37 | } |
| 38 | 38 | $relatedTable = str_after($colName, 'id_'); |
@@ -73,8 +73,8 @@ discard block |
||
| 73 | 73 | private function addRelatedTableColTypes($table, $result) |
| 74 | 74 | { |
| 75 | 75 | $columns = DB::getSchemaBuilder()->getColumnListing($table); |
| 76 | - $columns = array_filter($columns, function ($col) { |
|
| 77 | - return ! FieldDetector::isExceptional($col) && !starts_with($col, 'id_'); |
|
| 76 | + $columns = array_filter($columns, function($col) { |
|
| 77 | + return !FieldDetector::isExceptional($col) && !starts_with($col, 'id_'); |
|
| 78 | 78 | }); |
| 79 | 79 | |
| 80 | 80 | foreach ($columns as $col) { |
@@ -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 | |
@@ -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 | } |
@@ -44,13 +44,13 @@ discard block |
||
| 44 | 44 | { |
| 45 | 45 | $path = request('path') ? base64_decode(request('path')) : 'uploads'; |
| 46 | 46 | $file = Request::file('userfile'); |
| 47 | - if (! $file) { |
|
| 47 | + if (!$file) { |
|
| 48 | 48 | return null; |
| 49 | 49 | } |
| 50 | 50 | |
| 51 | 51 | $fileName = $file->getClientOriginalName(); |
| 52 | 52 | |
| 53 | - if (! FieldDetector::isUploadField($file->getClientOriginalExtension())) { |
|
| 53 | + if (!FieldDetector::isUploadField($file->getClientOriginalExtension())) { |
|
| 54 | 54 | backWithMsg('The file '.$fileName.' type is not allowed!', 'warning'); |
| 55 | 55 | } |
| 56 | 56 | |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | public function getDeleteFile($file) |
| 71 | 71 | { |
| 72 | 72 | $file = base64_decode($file); |
| 73 | - if(Storage::delete($file)) |
|
| 73 | + if (Storage::delete($file)) |
|
| 74 | 74 | backWithMsg('The file has been deleted!'); |
| 75 | 75 | |
| 76 | 76 | backWithMsg('The file did not deleted!', 'warning'); |
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | |
| 40 | 40 | public function myPhoto() : string |
| 41 | 41 | { |
| 42 | - $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg'; |
|
| 42 | + $photo = $this->photo ?: 'vendor/crudbooster/avatar.jpg'; |
|
| 43 | 43 | return asset($photo); |
| 44 | 44 | } |
| 45 | 45 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | private function guardView($request) |
| 61 | 61 | { |
| 62 | - if ($request->is($this->url.'*') && ! CRUDBooster::canView()) { |
|
| 62 | + if ($request->is($this->url.'*') && !CRUDBooster::canView()) { |
|
| 63 | 63 | $this->stopIllegalAction('view'); |
| 64 | 64 | } |
| 65 | 65 | } |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | private function guardCreate($request) |
| 71 | 71 | { |
| 72 | - if ($request->is($this->url.'/add*') && ! CRUDBooster::canCreate()) { |
|
| 72 | + if ($request->is($this->url.'/add*') && !CRUDBooster::canCreate()) { |
|
| 73 | 73 | $this->stopIllegalAction('add'); |
| 74 | 74 | } |
| 75 | 75 | } |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | private function guardUpdate($request) |
| 81 | 81 | { |
| 82 | - if ($request->is($this->url.'/edit*') && ! CRUDBooster::canUpdate()) { |
|
| 82 | + if ($request->is($this->url.'/edit*') && !CRUDBooster::canUpdate()) { |
|
| 83 | 83 | $this->stopIllegalAction('edit'); |
| 84 | 84 | } |
| 85 | 85 | } |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | */ |
| 90 | 90 | private function guardDelete($request) |
| 91 | 91 | { |
| 92 | - if ($request->is($this->url.'/delete*') && ! CRUDBooster::canDelete()) { |
|
| 92 | + if ($request->is($this->url.'/delete*') && !CRUDBooster::canDelete()) { |
|
| 93 | 93 | $this->stopIllegalAction('delete'); |
| 94 | 94 | } |
| 95 | 95 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | private function guardRead($request) |
| 101 | 101 | { |
| 102 | - if ($request->is($this->url.'/detail*') && ! CRUDBooster::canRead()) { |
|
| 102 | + if ($request->is($this->url.'/detail*') && !CRUDBooster::canRead()) { |
|
| 103 | 103 | $this->stopIllegalAction('view'); |
| 104 | 104 | } |
| 105 | 105 | } |
@@ -116,7 +116,7 @@ |
||
| 116 | 116 | */ |
| 117 | 117 | private function tokenMissMatchDevice($senderToken, $userAgent, $serverToken) |
| 118 | 118 | { |
| 119 | - if (! Cache::has($senderToken) || Cache::get($senderToken) == $userAgent) { |
|
| 119 | + if (!Cache::has($senderToken) || Cache::get($senderToken) == $userAgent) { |
|
| 120 | 120 | return; |
| 121 | 121 | } |
| 122 | 122 | $result = [ |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | |
| 35 | 35 | $printer->printHeader(); |
| 36 | 36 | |
| 37 | - if (! ((new RequirementChecker($this))->check())) { |
|
| 37 | + if (!((new RequirementChecker($this))->check())) { |
|
| 38 | 38 | $this->info('Sorry unfortunately your system is not meet with our requirements !'); |
| 39 | 39 | $printer->printFooter(false); |
| 40 | 40 | $this->info('--'); |