Passed
Push — master ( d881c0...fc50f6 )
by Iman
05:03
created
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/Modules/StatisticModule/AdminStatisticBuilderController.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -94,11 +94,11 @@  discard block
 block discarded – undo
94 94
         $component_name = $component->component_name;
95 95
         $area_name = $component->area_name;
96 96
         $config = json_decode($component->config);
97
-        if (! $config) {
97
+        if (!$config) {
98 98
             return response()->json(compact('componentID', 'layout'));
99 99
         }
100 100
         foreach ($config as $key => $value) {
101
-            if (! $value) {
101
+            if (!$value) {
102 102
                 continue;
103 103
             }
104 104
             $command = 'showFunction';
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
             'name' => 'Untitled',
127 127
         ];
128 128
 
129
-        if (! $data['created_at'] && Schema::hasColumn('cms_statistic_components', 'created_at')) {
129
+        if (!$data['created_at'] && Schema::hasColumn('cms_statistic_components', 'created_at')) {
130 130
             $data['created_at'] = YmdHis();
131 131
         }
132 132
 
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
     public function getBuilder($id_cms_statistics)
71 71
     {
72
-       CRUDBooster::allowOnlySuperAdmin();
72
+        CRUDBooster::allowOnlySuperAdmin();
73 73
         $this->cbLoader();
74 74
 
75 75
         $page_title = 'Statistic Builder';
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
 
150 150
     public function getEditComponent($componentID)
151 151
     {
152
-       CRUDBooster::allowOnlySuperAdmin();
152
+        CRUDBooster::allowOnlySuperAdmin();
153 153
         $this->cbLoader();
154 154
 
155 155
         $component_row = CRUDBooster::first('cms_statistic_components', ['componentID' => $componentID]);
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
 
174 174
     public function getDeleteComponent($id)
175 175
     {
176
-       CRUDBooster::allowOnlySuperAdmin();
176
+        CRUDBooster::allowOnlySuperAdmin();
177 177
 
178 178
         DB::table('cms_statistic_components')->where('componentID', $id)->delete();
179 179
 
Please login to merge, or discard this patch.
src/Modules/SettingModule/SettingRepo.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     public static function getSetting($name)
8 8
     {
9
-        return cache()->rememberForever('crudbooster_setting_'.$name, function () use($name) {
9
+        return cache()->rememberForever('crudbooster_setting_'.$name, function() use($name) {
10 10
             return \DB::table('cms_settings')->where('name', $name)->first()->content;
11 11
         });
12 12
     }
Please login to merge, or discard this patch.
src/Modules/ApiGeneratorModule/AdminColumnsTableController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -24,15 +24,15 @@  discard block
 block discarded – undo
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
 block discarded – undo
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) {
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
@@ -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
     /**
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/helpers/GetCurrentX.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
     public static function getCurrentModule()
25 25
     {
26 26
         $modulepath = self::getModulePath();
27
-        return cache()->remember('crudbooster_modules_'.$modulepath, 2, function () use ($modulepath) {
27
+        return cache()->remember('crudbooster_modules_'.$modulepath, 2, function() use ($modulepath) {
28 28
             return ModulesRepo::getByPath($modulepath);
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
src/CBCoreModule/Installer/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/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
         //todo : translation
Please login to merge, or discard this patch.
src/controllers/CBController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
     protected function genericLoader()
150 150
     {
151 151
         $this->cbInit();
152
-        $this->primaryKey = $this->primaryKey?: DbInspector::findPk($this->table);
152
+        $this->primaryKey = $this->primaryKey ?: DbInspector::findPk($this->table);
153 153
         $this->data_inputan = $this->form;
154 154
         $this->data['pk'] = $this->primaryKey;
155 155
         $this->data['hide_form'] = $this->hide_form;
Please login to merge, or discard this patch.