Passed
Push — master ( 0e21c3...78a9c6 )
by Iman
05:24 queued 10s
created
src/commands/CrudboosterInstallationCommand.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
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('--');
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
     private function createVendorAtPublic()
76 76
     {
77 77
         $this->info('Checking public/vendor directory...');
78
-        if (! file_exists(public_path('vendor'))) {
78
+        if (!file_exists(public_path('vendor'))) {
79 79
             mkdir(public_path('vendor'), 0777);
80 80
         }
81 81
 
82
-        if (! is_writable(public_path('vendor'))) {
82
+        if (!is_writable(public_path('vendor'))) {
83 83
             $this->info('Setup aborted !');
84 84
             $this->info('Please set public/vendor directory to writable 0777');
85 85
             exit;
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     private function symlinkForUpload()
90 90
     {
91 91
         $this->info('Checking public/uploads symlink...');
92
-        if (! file_exists(public_path('uploads'))) {
92
+        if (!file_exists(public_path('uploads'))) {
93 93
             $this->info('Creating public/uploads symlink...');
94 94
             app('files')->link(storage_path('app'), public_path('uploads'));
95 95
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 
107 107
     private function rrmdir($dir)
108 108
     {
109
-        if (! is_dir($dir)) {
109
+        if (!is_dir($dir)) {
110 110
             return;
111 111
         }
112 112
         foreach (scandir($dir) as $object) {
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
 
132 132
         $vendorPath = public_path('vendor'.DIRECTORY_SEPARATOR.'crudbooster');
133 133
 
134
-        if (! file_exists($vendorPath)) {
134
+        if (!file_exists($vendorPath)) {
135 135
             $this->info('Creating public/vendor/crudbooster symlink...');
136 136
             app('files')->link(__DIR__.'/../assets', public_path('vendor/crudbooster'));
137 137
 
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
         $this->info('Migrating database...');
164 164
         $this->call('migrate', ['--path' => '\database\migrations\crudbooster']);
165 165
 
166
-        if (! class_exists('CBSeeder')) {
166
+        if (!class_exists('CBSeeder')) {
167 167
             require_once __DIR__.'/../database/seeds/CBSeeder.php';
168 168
         }
169 169
         $this->callSilent('db:seed', ['--class' => 'CBSeeder']);
Please login to merge, or discard this patch.
src/helpers/cb_helpers.php 1 patch
Spacing   +25 added lines, -25 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(string $path = ''): string
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(string $section): string
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(string $section): string
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(): string
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(): string
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(string $type = ''): string
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(string $type = ''): string
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(): string
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(string $controller): string
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,21 +222,21 @@  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 242
         $error = $error ? "<i class='fa fa-info-circle'></i> $error" : '';
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
         return "<div class='text-danger'>$error</div><p class='help-block'>$help</p>";
245 245
     }
246 246
 }
247
-if (! function_exists('cbIcon')) {
247
+if (!function_exists('cbIcon')) {
248 248
     function cbIcon($icon)
249 249
     {
250 250
         return '<i class=\'fa fa-'.$icon.'\'></i>';
Please login to merge, or discard this patch.
src/Modules/PrivilegeModule/AdminPrivilegesController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
         foreach (Request::input('privileges', []) as $moduleId => $data) {
100 100
             //Check Menu
101 101
 
102
-            $arrs = array_get_keys($data, ['is_visible', 'is_create', 'is_read', 'is_edit', 'is_delete',], 0);
102
+            $arrs = array_get_keys($data, ['is_visible', 'is_create', 'is_read', 'is_edit', 'is_delete', ], 0);
103 103
             $this->savePermissions($id, $moduleId, $arrs);
104 104
         }
105 105
 
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
         $this->col[] = [
186 186
             'label' => 'Superadmin',
187 187
             'name' => 'is_superadmin',
188
-            'callback' => function ($row) {
188
+            'callback' => function($row) {
189 189
                 return ($row->is_superadmin) ? "<span class='label label-success'>Superadmin</span>" : "<span class='label label-default'>Standard</span>";
190 190
             },
191 191
         ];
Please login to merge, or discard this patch.
src/CBCoreModule/Search.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/controllers/ApiController/ValidationRules.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
             $format_validation[] = $this->existOrUnique($config, $type);
28 28
         } elseif (in_array($type, ['date_format', 'digits_between', 'in', 'mimes', 'min', 'max', 'not_in'])) {
29 29
             $format_validation[] = $type.':'.$config;
30
-        } elseif (! in_array($type, $typeExcept)) {
30
+        } elseif (!in_array($type, $typeExcept)) {
31 31
             $format_validation[] = $type;
32 32
         }
33 33
 
Please login to merge, or discard this patch.
src/helpers/DbInspector.php 1 patch
Spacing   +6 added lines, -6 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);
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
     private static function findPKname($table)
43 43
     {
44 44
         $cols = \DB::getDoctrineSchemaManager()->listTableDetails($table)->getPrimaryKey()->getColumns();
45
-        if (! empty($cols)) {
45
+        if (!empty($cols)) {
46 46
             return $cols[0];
47 47
         }
48 48
     }
@@ -55,11 +55,11 @@  discard block
 block discarded – undo
55 55
     public static function isNullableColumn($table, $colName)
56 56
     {
57 57
         $colObj = \DB::getDoctrineSchemaManager()->listTableColumns($table)[$colName];
58
-        if (! $colObj) {
58
+        if (!$colObj) {
59 59
             return;
60 60
         }
61 61
 
62
-        return ! $colObj->getNotnull();
62
+        return !$colObj->getNotnull();
63 63
     }
64 64
 
65 65
     /**
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         }
95 95
 
96 96
         $table = self::getTableForeignKey($fieldName);
97
-        if (! $table) {
97
+        if (!$table) {
98 98
             return false;
99 99
         }
100 100
 
Please login to merge, or discard this patch.
src/controllers/Helpers/IndexImport.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
      */
67 67
     public function validateForImport($file)
68 68
     {
69
-        return Validator::make(['extension' => $file->getClientOriginalExtension(),], ['extension' => 'in:xls,xlsx,csv']);
69
+        return Validator::make(['extension' => $file->getClientOriginalExtension(), ], ['extension' => 'in:xls,xlsx,csv']);
70 70
     }
71 71
 
72 72
     /**
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
         $file = base64_decode(request('file'));
83 83
         $file = 'storage'.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.$file;
84
-        $rows = Excel::load($file, function ($reader) {
84
+        $rows = Excel::load($file, function($reader) {
85 85
         })->get();
86 86
 
87 87
         //$data_import_column = [];
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         foreach ($selectColumn as $sk => $s) {
127 127
             $colname = $table_columns[$sk];
128 128
 
129
-            if (! DbInspector::isForeignKey($colname) || intval($value->$s)) {
129
+            if (!DbInspector::isForeignKey($colname) || intval($value->$s)) {
130 130
                 $a[$colname] = $value->$s;
131 131
                 continue;
132 132
             }
@@ -174,10 +174,10 @@  discard block
 block discarded – undo
174 174
     {
175 175
         $module = DB::table('cms_moduls')->where('table_name', $table)->first();
176 176
         if (is_null($module)) {
177
-            return ;
177
+            return;
178 178
         }
179 179
         $relation_class = __NAMESPACE__.'\\'.$module->controller;
180
-        if (! class_exists($relation_class)) {
180
+        if (!class_exists($relation_class)) {
181 181
             $relation_class = ctrlNamespace().'\\'.$module->controller;
182 182
         }
183 183
 
Please login to merge, or discard this patch.
src/routes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@  discard block
 block discarded – undo
5 5
 
6 6
 $namespace = '\crocodicstudio\crudbooster\controllers';
7 7
 /* ROUTER FOR UPLOADS */
8
-Route::group(['middleware' => ['web'], 'namespace' => $namespace], function () {
8
+Route::group(['middleware' => ['web'], 'namespace' => $namespace], function() {
9 9
     Route::get('uploads/{one?}/{two?}/{three?}/{four?}/{five?}', ['uses' => 'FileController@getPreview', 'as' => 'fileControllerPreview']);
10 10
 });
11 11
 
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
     'middleware' => ['web', CBBackend::class],
15 15
     'prefix' => cbAdminPath(),
16 16
     'namespace' => ctrlNamespace(),
17
-], function () {
17
+], function() {
18 18
     CbRouter::routeController('users', 'AdminUsersController');
19 19
     try {
20 20
         $modules = DB::table('cms_moduls')->where('path', '!=', '')->where('controller', '!=', '')->where('is_protected', 0)->get();
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     'middleware' => ['web', \crocodicstudio\crudbooster\middlewares\CBSuperadmin::class],
32 32
     'prefix' => cbAdminPath(),
33 33
     'namespace' => $namespace,
34
-], function () {
34
+], function() {
35 35
     Route::post('{module}/do-upload-import-data', 'FileController@uploadImportData')->name('UploadImportData');
36 36
     Route::post('{module}/upload-summernote', 'FileController@uploadSummernote')->name('UploadImportData');
37 37
     Route::post('{module}/upload-file', 'FileController@uploadFile')->name('UploadImportData');
Please login to merge, or discard this patch.
src/Modules/StatisticModule/statistic_route.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
     'middleware' => ['web', \crocodicstudio\crudbooster\middlewares\CBSuperadmin::class],
5 5
     'prefix' => cbAdminPath(),
6 6
     'namespace' => cbModulesNS('StatisticModule'),
7
-], function () {
7
+], function() {
8 8
     Route::get('statistic-builder/', 'AdminStatisticBuilderController@getIndex')->name('AdminStatisticBuilderControllerGetIndex');
9 9
     Route::get('statistic-builder/show-dashboard', 'AdminStatisticBuilderController@getShowDashboard')->name('AdminStatisticBuilderControllerGetShowDashboard');
10 10
     Route::get('statistic-builder/show', 'AdminStatisticBuilderController@getShow')->name('AdminStatisticBuilderControllerGetShow');
Please login to merge, or discard this patch.