Passed
Push — master ( 2ff9b2...70d4c6 )
by Iman
03:58
created
src/controllers/Helpers/IndexImport.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public function uploadImportData($file)
51 51
     {
52 52
         $dir = 'uploads/'.date('Y-m');
53
-        $filename = md5(str_random(5)).'.'. $file->getClientOriginalExtension();
53
+        $filename = md5(str_random(5)).'.'.$file->getClientOriginalExtension();
54 54
 
55 55
         //Create Directory Monthly
56 56
         Storage::makeDirectory($dir);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
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
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
 
84 84
         $file = base64_decode(request('file'));
85 85
         $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file;
86
-        $rows = Excel::load($file, function ($reader) {
86
+        $rows = Excel::load($file, function($reader) {
87 87
         })->get();
88 88
 
89 89
         //$data_import_column = [];
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         foreach ($select_column as $sk => $s) {
129 129
             $colname = $table_columns[$sk];
130 130
 
131
-            if (! DbInspector::isForeignKey($colname) || intval($value->$s)) {
131
+            if (!DbInspector::isForeignKey($colname) || intval($value->$s)) {
132 132
                 $a[$colname] = $value->$s;
133 133
                 continue;
134 134
             }
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
         $relation_moduls = DB::table('cms_moduls')->where('table_name', $relation_table)->first();
179 179
 
180 180
         $relation_class = __NAMESPACE__.'\\'.$relation_moduls->controller;
181
-        if (! class_exists($relation_class)) {
181
+        if (!class_exists($relation_class)) {
182 182
             $relation_class = ctrlNamespace().'\\'.$relation_moduls->controller;
183 183
         }
184 184
 
Please login to merge, or discard this patch.
src/CBCoreModule/CbRouter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     private static function getControllerMethods($ctrl)
64 64
     {
65 65
         $controller_methods = (new \ReflectionClass($ctrl))->getMethods(\ReflectionMethod::IS_PUBLIC);
66
-        $controller_methods = array_filter($controller_methods, function ($method) {
66
+        $controller_methods = array_filter($controller_methods, function($method) {
67 67
             return ($method->class !== 'Illuminate\Routing\Controller' && $method->name !== 'getIndex');
68 68
         });
69 69
 
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/AdminModulesController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     {
16 16
         $this->table = 'cms_moduls';
17 17
         $this->primaryKey = 'id';
18
-        $this->titleField = 'name' ;
18
+        $this->titleField = 'name';
19 19
         $this->limit = 100;
20 20
         $this->buttonAdd = false;
21 21
         $this->buttonExport = false;
Please login to merge, or discard this patch.
src/controllers/CBController/Deleter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -23,12 +23,12 @@  discard block
 block discarded – undo
23 23
         $this->cbLoader();
24 24
         $selectedIds = request('checkbox');
25 25
         $btnName = request('button_name');
26
-        if (! $selectedIds) {
26
+        if (!$selectedIds) {
27 27
             CRUDBooster::redirect($_SERVER['HTTP_REFERER'], cbTrans('at_least_one_row'), 'warning');
28 28
         }
29 29
         if ($btnName == 'delete') {
30 30
             (new DataRemover($this))->doDeleteWithHook($selectedIds);
31
-            $this->insertLog('log_delete', implode(',', $selectedIds) . ' - '. $this->table);
31
+            $this->insertLog('log_delete', implode(',', $selectedIds).' - '.$this->table);
32 32
             backWithMsg(cbTrans('alert_delete_selected_success'));
33 33
         }
34 34
 
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
         $message = cbTrans('alert_action', ['action' => $action]);
48 48
 
49 49
         if ($this->actionButtonSelected($id_selected, $button_name) === false) {
50
-            $message = ! empty($this->alert['message']) ? $this->alert['message'] : 'Error';
51
-            $type = ! empty($this->alert['type']) ? $this->alert['type'] : 'danger';
50
+            $message = !empty($this->alert['message']) ? $this->alert['message'] : 'Error';
51
+            $type = !empty($this->alert['type']) ? $this->alert['type'] : 'danger';
52 52
         }
53 53
 
54 54
         backWithMsg($message, $type);
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
         $this->findRow($id)->update([$column => null]);
69 69
 
70
-        $this->insertLog('log_delete_image', $id . ' - '. $this->table);
70
+        $this->insertLog('log_delete_image', $id.' - '.$this->table);
71 71
 
72 72
         CRUDBooster::redirect(Request::server('HTTP_REFERER'), cbTrans('alert_delete_data_success'), 'success');
73 73
     }
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/ScaffoldingParser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/controllers/ApiController/ExecuteApi.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
             }
62 62
             ApiResponder::send($result, $posts, $this->ctrl);
63 63
         } elseif (in_array($actionType, ['save_add', 'save_edit'])) {
64
-            $rowAssign = array_filter($input_validator, function ($column) use ($table) {
64
+            $rowAssign = array_filter($input_validator, function($column) use ($table) {
65 65
                 return Schema::hasColumn($table, $column);
66 66
             }, ARRAY_FILTER_USE_KEY);
67 67
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
      */
132 132
     private function filterRows($data, $parameters, $posts, $table, $typeExcept)
133 133
     {
134
-        $data->where(function ($w) use ($parameters, $posts, $table, $typeExcept) {
134
+        $data->where(function($w) use ($parameters, $posts, $table, $typeExcept) {
135 135
             foreach ($parameters as $param) {
136 136
                 $name = $param['name'];
137 137
                 $type = $param['type'];
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
                 $rows->$k = asset($v);
262 262
             }
263 263
 
264
-            if (! in_array($k, $responsesFields)) {
264
+            if (!in_array($k, $responsesFields)) {
265 265
                 unset($rows->$k);
266 266
             }
267 267
         }
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
     {
316 316
         $result = ApiResponder::makeResult(1, 'success');
317 317
 
318
-        return array_merge($result, (array)$rows);
318
+        return array_merge($result, (array) $rows);
319 319
     }
320 320
 
321 321
     /**
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
      */
326 326
     private function applyLike($data, $search_in, $value)
327 327
     {
328
-        $data->where(function ($w) use ($search_in, $value) {
328
+        $data->where(function($w) use ($search_in, $value) {
329 329
             foreach ($search_in as $k => $field) {
330 330
                 $method = 'orWhere';
331 331
                 if ($k == 0) {
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
      */
347 347
     private function joinRelatedTables($table, $responsesFields, $name, $data, $nameTmp)
348 348
     {
349
-        if (! DbInspector::isForeignKey($name)) {
349
+        if (!DbInspector::isForeignKey($name)) {
350 350
             return $nameTmp;
351 351
         }
352 352
         $joinTable = DbInspector::getTableForeignKey($name);
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
     private function doValidation($inputValidator, $dataValidation, $posts)
372 372
     {
373 373
         $validator = Validator::make($inputValidator, $dataValidation);
374
-        if (! $validator->fails()) {
374
+        if (!$validator->fails()) {
375 375
             return true;
376 376
         }
377 377
         $message = $validator->errors()->all();
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     {
393 393
         $row = $data->first();
394 394
 
395
-        if (! $row) {
395
+        if (!$row) {
396 396
             return ApiResponder::makeResult(0, 'There is no data found !');
397 397
         }
398 398
 
@@ -414,7 +414,7 @@  discard block
 block discarded – undo
414 414
                 $this->passwordError($posts);
415 415
             }
416 416
 
417
-            if (! $required && $used && $value) {
417
+            if (!$required && $used && $value) {
418 418
                 $this->passwordError($posts);
419 419
             }
420 420
         }
@@ -430,11 +430,11 @@  discard block
 block discarded – undo
430 430
      */
431 431
     private function filterRedundantResp($responses)
432 432
     {
433
-        $responses = array_filter($responses, function ($resp) {
434
-            return ! ($resp['name'] == 'ref_id' || $resp['type'] == 'custom');
433
+        $responses = array_filter($responses, function($resp) {
434
+            return !($resp['name'] == 'ref_id' || $resp['type'] == 'custom');
435 435
         });
436 436
 
437
-        $responses = array_filter($responses, function ($resp) {
437
+        $responses = array_filter($responses, function($resp) {
438 438
             return (intval($resp['used']) != 0 || DbInspector::isForeignKey($resp['name']));
439 439
         });
440 440
 
@@ -449,15 +449,15 @@  discard block
 block discarded – undo
449 449
     private function validateParams($parameters, $table)
450 450
     {
451 451
         $posts = request()->all();
452
-        if (! $parameters) {
452
+        if (!$parameters) {
453 453
             return ['', ''];
454 454
         }
455 455
         $typeExcept = ['password', 'ref', 'base64_file', 'custom', 'search'];
456 456
         $inputValidator = [];
457 457
         $dataValidation = [];
458 458
 
459
-        $parameters = array_filter($parameters, function ($param){
460
-            return !(is_string($param['config'])&& !starts_with($param['config'], '*'));
459
+        $parameters = array_filter($parameters, function($param) {
460
+            return !(is_string($param['config']) && !starts_with($param['config'], '*'));
461 461
         });
462 462
 
463 463
         foreach ($parameters as $param) {
Please login to merge, or discard this patch.
src/controllers/ApiController/ApiValidations.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.