Passed
Push — master ( cf1605...398e0b )
by Iman
04:49
created
src/CBCoreModule/FileUploader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
 {
11 11
     function uploadFile($name)
12 12
     {
13
-        if (! Request::hasFile($name)) {
13
+        if (!Request::hasFile($name)) {
14 14
             return null;
15 15
         }
16 16
         $file = Request::file($name);
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     private function validateExtension($ext)
35 35
     {
36
-        if (! FieldDetector::isUploadField($ext)) {
36
+        if (!FieldDetector::isUploadField($ext)) {
37 37
             echo "The filetype is not allowed!";
38 38
             exit;
39 39
         }
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/helpers/DbInspector.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
      */
17 17
     public static function findPK($table)
18 18
     {
19
-        if (! $table) {
19
+        if (!$table) {
20 20
             return 'id';
21 21
         }
22 22
 
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
         $primaryKey = self::findPKname($table);
29 29
 
30
-        if (! $primaryKey) {
30
+        if (!$primaryKey) {
31 31
             return 'id';
32 32
         }
33 33
         CbCache::put('table_'.$table, 'primaryKey', $primaryKey);
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
         }
78 78
 
79 79
         $table = self::getTableForeignKey($fieldName);
80
-        if (! $table) {
80
+        if (!$table) {
81 81
             return false;
82 82
         }
83 83
 
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/helpers/cb_helpers.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -8,42 +8,42 @@  discard block
 block discarded – undo
8 8
 | ---------------------------------------------------------------------------------------------------------------
9 9
 |
10 10
 */
11
-if (! function_exists('cbModulesNS')) {
11
+if (!function_exists('cbModulesNS')) {
12 12
     function cbModulesNS($path = '')
13 13
     {
14 14
         return \crocodicstudio\crudbooster\helpers\CbStructure::cbModulesNS($path);
15 15
     }
16 16
 }
17 17
 
18
-if (! function_exists('cbStartMarker')) {
18
+if (!function_exists('cbStartMarker')) {
19 19
     function cbStartMarker($section)
20 20
     {
21 21
         return "# START $section DO NOT REMOVE THIS LINE";
22 22
     }
23 23
 }
24 24
 
25
-if (! function_exists('cbEndMarker')) {
25
+if (!function_exists('cbEndMarker')) {
26 26
     function cbEndMarker($section)
27 27
     {
28 28
         return "# END $section DO NOT REMOVE THIS LINE";
29 29
     }
30 30
 }
31 31
 
32
-if (! function_exists('cbAdminPath')) {
32
+if (!function_exists('cbAdminPath')) {
33 33
     function cbAdminPath()
34 34
     {
35 35
         return cbConfig('ADMIN_PATH');
36 36
     }
37 37
 }
38 38
 
39
-if (! function_exists('ctrlNamespace')) {
39
+if (!function_exists('ctrlNamespace')) {
40 40
     function ctrlNamespace()
41 41
     {
42 42
         return \crocodicstudio\crudbooster\helpers\CbStructure::ctrlNamespace();
43 43
     }
44 44
 }
45 45
 
46
-if (! function_exists('is_checked')) {
46
+if (!function_exists('is_checked')) {
47 47
     /**
48 48
      * @param $format
49 49
      * @param $value
@@ -67,35 +67,35 @@  discard block
 block discarded – undo
67 67
     }
68 68
 }
69 69
 
70
-if (! function_exists('CbComponentsPath')) {
70
+if (!function_exists('CbComponentsPath')) {
71 71
     function CbComponentsPath($type = '')
72 72
     {
73 73
         return \crocodicstudio\crudbooster\helpers\CbStructure::componentsPath($type);
74 74
     }
75 75
 }
76 76
 
77
-if (! function_exists('CbPublishedComponentsPath')) {
77
+if (!function_exists('CbPublishedComponentsPath')) {
78 78
     function CbPublishedComponentsPath($type = '')
79 79
     {
80 80
         return \crocodicstudio\crudbooster\helpers\CbStructure::publishedComponentsPath($type);
81 81
     }
82 82
 }
83 83
 
84
-if (! function_exists('controllers_dir')) {
84
+if (!function_exists('controllers_dir')) {
85 85
     function controllers_dir()
86 86
     {
87 87
         return \crocodicstudio\crudbooster\helpers\CbStructure::controllersDir();
88 88
     }
89 89
 }
90 90
 
91
-if (! function_exists('controller_path')) {
91
+if (!function_exists('controller_path')) {
92 92
     function controller_path($controller)
93 93
     {
94 94
         return \crocodicstudio\crudbooster\helpers\CbStructure::controllerPath($controller);
95 95
     }
96 96
 }
97 97
 
98
-if (! function_exists('now')) {
98
+if (!function_exists('now')) {
99 99
     function now()
100 100
     {
101 101
         return date('Y-m-d H:i:s');
@@ -109,14 +109,14 @@  discard block
 block discarded – undo
109 109
 | $name = name of input
110 110
 |
111 111
 */
112
-if (! function_exists('g')) {
112
+if (!function_exists('g')) {
113 113
     function g($name)
114 114
     {
115 115
         return Request::get($name);
116 116
     }
117 117
 }
118 118
 
119
-if (! function_exists('cbTrans')) {
119
+if (!function_exists('cbTrans')) {
120 120
     /**
121 121
      * Translate the given message.
122 122
      *
@@ -130,34 +130,34 @@  discard block
 block discarded – undo
130 130
     }
131 131
 }
132 132
 
133
-if (! function_exists('cbAsset')) {
133
+if (!function_exists('cbAsset')) {
134 134
     function cbAsset($key)
135 135
     {
136 136
         return asset('vendor/crudbooster/assets/'.$key);
137 137
     }
138 138
 }
139 139
 
140
-if (! function_exists('cbScript')) {
140
+if (!function_exists('cbScript')) {
141 141
     function cbScript($key)
142 142
     {
143 143
         return '<script src="'.cbAsset($key).'" type="text/javascript"></script>';
144 144
     }
145 145
 }
146 146
 
147
-if (! function_exists('cbStyleSheet')) {
147
+if (!function_exists('cbStyleSheet')) {
148 148
     function cbStyleSheet($key)
149 149
     {
150 150
         return '<link rel="stylesheet" type="text/css" href="'.cbAsset($key).'"/>';
151 151
     }
152 152
 }
153 153
 
154
-if (! function_exists('cbConfig')) {
154
+if (!function_exists('cbConfig')) {
155 155
     function cbConfig($key, $default = null)
156 156
     {
157 157
         return config('crudbooster.'.$key, $default);
158 158
     }
159 159
 }
160
-if (! function_exists('makeValidationForHTML')) {
160
+if (!function_exists('makeValidationForHTML')) {
161 161
     function makeValidationForHTML($rules)
162 162
     {
163 163
         $validation = [];
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
     }
176 176
 }
177 177
 
178
-if (! function_exists('findSelected')) {
178
+if (!function_exists('findSelected')) {
179 179
     /**
180 180
      * @param $rawvalue
181 181
      * @param $form
@@ -184,7 +184,7 @@  discard block
 block discarded – undo
184 184
      */
185 185
     function findSelected($rawvalue, $form, $optionValue)
186 186
     {
187
-        if (! $rawvalue) {
187
+        if (!$rawvalue) {
188 188
             return '';
189 189
         }
190 190
         $value = $rawvalue;
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
         return $selected;
207 207
     }
208 208
 }
209
-if (! function_exists('array_get_keys')) {
209
+if (!function_exists('array_get_keys')) {
210 210
 
211 211
     /**
212 212
      * @param array $_array
@@ -222,28 +222,28 @@  discard block
 block discarded – undo
222 222
     }
223 223
 }
224 224
 
225
-if (! function_exists('cbGetSetting')) {
225
+if (!function_exists('cbGetSetting')) {
226 226
     function cbGetSetting($name)
227 227
     {
228 228
         return \crocodicstudio\crudbooster\Modules\SettingModule\SettingRepo::getSetting($name);
229 229
     }
230 230
 }
231 231
 
232
-if (! function_exists('backWithMsg')) {
232
+if (!function_exists('backWithMsg')) {
233 233
     function backWithMsg($msg, $type = 'success')
234 234
     {
235 235
         sendAndTerminate(redirect()->back()->with(['message_type' => $type, 'message' => $msg]));
236 236
     }
237 237
 }
238 238
 
239
-if (! function_exists('underField')) {
239
+if (!function_exists('underField')) {
240 240
     function underField($help, $error)
241 241
     {
242
-        $error = $error ? "<i class='fa fa-info-circle'></i> $error":'' ;
242
+        $error = $error ? "<i class='fa fa-info-circle'></i> $error" : '';
243 243
         return "<div class='text-danger'>$error</div><p class='help-block'>$help</p>";
244 244
     }
245 245
 }
246
-if (! function_exists('cbIcon')) {
246
+if (!function_exists('cbIcon')) {
247 247
     function cbIcon($icon)
248 248
     {
249 249
         return '<i class=\'fa fa-'.$icon.'\'></i>';
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.