Completed
Push — master ( a63bc5...f003cc )
by Iman
17s
created
src/Modules/ModuleGenerator/ControllerGenerator/FormConfigGenerator.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
 
89 89
             $props = array_get($map, FieldDetector::detect($colName), null);
90 90
             unset($map);
91
-            if($props !== null){
91
+            if ($props !== null) {
92 92
                 $input = array_merge($input, $props);
93 93
             }
94 94
 
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
 
129 129
         $arr = array_get([
130 130
             'text' => ['textarea', "string|min:5", []],
131
-            'date' => ['date', "date", ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY',]],
132
-            'datetime' => ['datetime', "date_format:Y-m-d H:i:s", ['php_format' => 'M, d Y H:i',]],
131
+            'date' => ['date', "date", ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY', ]],
132
+            'datetime' => ['datetime', "date_format:Y-m-d H:i:s", ['php_format' => 'M, d Y H:i', ]],
133 133
             'time' => ['time', 'date_format:H:i:s', []],
134 134
             'double' => ['money', "integer|min:0", []],
135 135
             'int' => ['number', 'integer|min:0', []],
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     private static function handleForeignKey($field)
150 150
     {
151 151
         $jointable = str_replace(['id_', '_id'], '', $field);
152
-        if (! Schema::hasTable($jointable)) {
152
+        if (!Schema::hasTable($jointable)) {
153 153
             return ['', ''];
154 154
         }
155 155
         $options = [
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/ControllerGenerator/FieldDetector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
             'isNameField',
44 44
             'isUrlField',
45 45
         ];
46
-        foreach ($map as $methodName){
46
+        foreach ($map as $methodName) {
47 47
             if (self::$methodName($colName)) {
48 48
                 return $methodName;
49 49
             }
Please login to merge, or discard this patch.
src/routes.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 
5 5
 $namespace = '\crocodicstudio\crudbooster\controllers';
6 6
 /* ROUTER FOR UPLOADS */
7
-Route::group(['middleware' => ['web'], 'namespace' => $namespace], function () {
7
+Route::group(['middleware' => ['web'], 'namespace' => $namespace], function() {
8 8
     Route::get('uploads/{one?}/{two?}/{three?}/{four?}/{five?}', ['uses' => 'FileController@getPreview', 'as' => 'fileControllerPreview']);
9 9
 });
10 10
 
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
     'middleware' => ['web', CBBackend::class],
14 14
     'prefix' => cbAdminPath(),
15 15
     'namespace' => ctrlNamespace(),
16
-], function () {
16
+], function() {
17 17
     CRUDBooster::routeController('users', 'AdminUsersController');
18 18
     try {
19 19
         $modules = DB::table('cms_moduls')->where('path', '!=', '')->where('controller', '!=', '')->where('is_protected', 0)->get();
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
     'middleware' => ['web', \crocodicstudio\crudbooster\middlewares\CBSuperadmin::class],
30 30
     'prefix' => cbAdminPath(),
31 31
     'namespace' => $namespace,
32
-], function () {
33
-    Route::post('{module}/do-upload-import-data', ['uses' => 'FileController@uploadImportData', 'as' => 'UploadImportData',]);
34
-    Route::post('{module}/upload-summernote', ['uses' => 'FileController@uploadSummernote', 'as' => 'UploadImportData',]);
35
-    Route::post('{module}/upload-file', ['uses' => 'FileController@uploadFile', 'as' => 'UploadImportData',]);
36
-    Route::post('{module}/done-import', ['uses' => 'FileController@doneImport', 'as' => 'doneImportData',]);
32
+], function() {
33
+    Route::post('{module}/do-upload-import-data', ['uses' => 'FileController@uploadImportData', 'as' => 'UploadImportData', ]);
34
+    Route::post('{module}/upload-summernote', ['uses' => 'FileController@uploadSummernote', 'as' => 'UploadImportData', ]);
35
+    Route::post('{module}/upload-file', ['uses' => 'FileController@uploadFile', 'as' => 'UploadImportData', ]);
36
+    Route::post('{module}/done-import', ['uses' => 'FileController@doneImport', 'as' => 'doneImportData', ]);
37 37
 });
38 38
 
Please login to merge, or discard this patch.
src/Modules/AuthModule/AuthController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 
31 31
     public function getLockscreen()
32 32
     {
33
-        if (! CRUDBooster::myId()) {
33
+        if (!CRUDBooster::myId()) {
34 34
             Session::flush();
35 35
             return redirect()->route('getLogin')->with('message', cbTrans('alert_session_expired'));
36 36
         }
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 
97 97
     private function validateForgotPass()
98 98
     {
99
-        $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users',]);
99
+        $validator = Validator::make(request()->all(), ['email' => 'required|email|exists:cms_users', ]);
100 100
 
101 101
         if ($validator->fails()) {
102 102
             $message = $validator->errors()->all();
Please login to merge, or discard this patch.
src/Modules/AuthModule/LoginController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      */
70 70
     private function validatePassword($password, $users)
71 71
     {
72
-        if (! \Hash::check($password, $users->password)) {
72
+        if (!\Hash::check($password, $users->password)) {
73 73
             $resp = redirect()->route('getLogin')->with('message', cbTrans('alert_password_wrong'));
74 74
             sendAndTerminate($resp);
75 75
         }
Please login to merge, or discard this patch.
src/controllers/CBController/CbFormLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
 
84 84
     private function checkHideForm()
85 85
     {
86
-        if (! count($this->hide_form)) {
86
+        if (!count($this->hide_form)) {
87 87
             return null;
88 88
         }
89 89
         foreach ($this->form as $i => $f) {
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
 
@@ -25,13 +25,13 @@  discard block
 block discarded – undo
25 25
         }
26 26
         $table = CRUDBooster::parseSqlTable($table);
27 27
 
28
-        if (! $table['table']) {
28
+        if (!$table['table']) {
29 29
             throw new \Exception("parseSqlTable can't determine the table");
30 30
         }
31 31
 
32 32
         $primaryKey = self::findPKname($table);
33 33
 
34
-        if (! $primaryKey) {
34
+        if (!$primaryKey) {
35 35
             return 'id';
36 36
         }
37 37
         CbCache::put('table_'.$table, 'primaryKey', $primaryKey);
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
         $cols = collect(DB::select('SELECT * FROM information_schema.COLUMNS WHERE TABLE_SCHEMA = :database AND TABLE_NAME = :table', [
102 102
             'database' => $table['database'],
103 103
             'table' => $table['table'],
104
-        ]))->map(function ($x) {
104
+        ]))->map(function($x) {
105 105
             return (array) $x;
106 106
         })->toArray();
107 107
 
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
     {
118 118
         $field = 'field_type_'.$table.'_'.$field;
119 119
 
120
-        return Cache::rememberForever($field, function () use ($table, $field) {
120
+        return Cache::rememberForever($field, function() use ($table, $field) {
121 121
             try {
122 122
                 //MySQL & SQL Server
123 123
                 $typedata = DB::select(DB::raw("select DATA_TYPE from INFORMATION_SCHEMA.COLUMNS where TABLE_NAME='$table' and COLUMN_NAME = '$field'"))[0]->DATA_TYPE;
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
         }
143 143
 
144 144
         $table = CRUDBooster::getTableForeignKey($fieldName);
145
-        if (! $table) {
145
+        if (!$table) {
146 146
             return false;
147 147
         }
148 148
 
Please login to merge, or discard this patch.
src/CBCoreModule/Index/Order.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
     function handle($result, $table)
25 25
     {
26 26
         $orderby = $this->ctrl->orderby;
27
-        if (! $orderby) {
27
+        if (!$orderby) {
28 28
             $result->orderby($table.'.'.$this->ctrl->primaryKey, 'desc');
29 29
             return;
30 30
         }
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/AdminModulesController.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
         $this->table = 'cms_moduls';
18 18
         $this->primaryKey = 'id';
19
-        $this->title_field = 'name' ;
19
+        $this->title_field = 'name';
20 20
         $this->limit = 100;
21 21
         $this->button_add = false;
22 22
         $this->buttonExport = false;
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         $this->orderby = ['is_protected' => 'asc', 'name' => 'asc'];
29 29
 
30 30
         $this->col = [];
31
-        $this->col[] = ['label' => 'name', 'name' => 'name' ];
31
+        $this->col[] = ['label' => 'name', 'name' => 'name'];
32 32
         $this->col[] = ['label' => "Table", 'name' => "table_name"];
33 33
         $this->col[] = ['label' => "Path", 'name' => "path"];
34 34
         $this->col[] = ['label' => "Controller", 'name' => "controller"];
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
         $this->form[] = ['label' => 'Controller', 'name' => 'controller', 'type' => 'text', 'placeholder' => '(Optional) Auto Generated'];
251 251
 
252 252
         if (in_array(CRUDBooster::getCurrentMethod(), ['getAdd', 'postAddSave'])) {
253
-            return ;
253
+            return;
254 254
         }
255 255
 
256 256
         $this->form[] = [
Please login to merge, or discard this patch.