Passed
Push — master ( 0e21c3...78a9c6 )
by Iman
05:24 queued 10s
created
src/Modules/ModuleGenerator/Step3Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 {
10 10
     public function showForm($id)
11 11
     {
12
-        $row = ModulesRepo::find($id);;
12
+        $row = ModulesRepo::find($id); ;
13 13
 
14 14
         $columns = \Schema::getColumnListing($row->table_name);
15 15
 
Please login to merge, or discard this patch.
src/CBCoreModule/Index/FilterIndexRows.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     {
36 36
         $filterColumn = $this->filterFalsyValues($filterColumn);
37 37
 
38
-        $result->where(function ($query) use ($filterColumn) {
38
+        $result->where(function($query) use ($filterColumn) {
39 39
             foreach ($filterColumn as $key => $fc) {
40 40
 
41 41
                 $value = @$fc['value'];
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
                     case 'in':
59 59
                     case 'not in':
60 60
                         $value = explode(',', $value);
61
-                        if (! empty($value)) {
61
+                        if (!empty($value)) {
62 62
                             $query->whereIn($key, $value);
63 63
                         }
64 64
                         break;
@@ -102,11 +102,11 @@  discard block
 block discarded – undo
102 102
      */
103 103
     private function filterFalsyValues($filterColumn)
104 104
     {
105
-        return array_filter($filterColumn, function ($fc) {
105
+        return array_filter($filterColumn, function($fc) {
106 106
             $value = @$fc['value'];
107 107
             $type = @$fc['type'];
108 108
 
109
-            if (($type == 'between') || ! $value || ! $type) {
109
+            if (($type == 'between') || !$value || !$type) {
110 110
                 return false;
111 111
             }
112 112
 
Please login to merge, or discard this patch.
src/Modules/FileManagerModule/AdminFileManagerController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
     {
46 46
         $path = request('path') ? base64_decode(request('path')) : 'uploads';
47 47
         $file = Request::file('userfile');
48
-        if (! $file) {
48
+        if (!$file) {
49 49
             return null;
50 50
         }
51 51
 
52 52
         $fileName = $file->getClientOriginalName();
53 53
 
54
-        if (! FieldDetector::isUploadField($file->getClientOriginalExtension())) {
54
+        if (!FieldDetector::isUploadField($file->getClientOriginalExtension())) {
55 55
             backWithMsg('The file '.$fileName.' type is not allowed!', 'warning');
56 56
         }
57 57
 
Please login to merge, or discard this patch.
src/commands/RequirementChecker.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,8 +25,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Modules/ApiGeneratorModule/AdminApiGeneratorController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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[] = [
Please login to merge, or discard this patch.
src/Modules/ApiGeneratorModule/DownloadPostman.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/ControllerGenerator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/ControllerGenerator/FormConfigGenerator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 = [
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.