Passed
Pull Request — master (#1095)
by Iman
03:10
created
src/Modules/AuthModule/CbAuthServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function boot()
16 16
     {
17 17
         $this->app['view']->addNamespace('CbAuth', __DIR__.'/views');
18
-        $this->loadRoutesFrom( __DIR__.'/auth_routes.php');
18
+        $this->loadRoutesFrom(__DIR__.'/auth_routes.php');
19 19
     }
20 20
 
21 21
     /**
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/Step3Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function showForm($id)
12 12
     {
13
-        $row = ModulesRepo::find($id);;
13
+        $row = ModulesRepo::find($id); ;
14 14
 
15 15
         $columns = CRUDBooster::getTableColumns($row->table_name);
16 16
 
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/Step4Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 {
11 11
     public function showForm($id)
12 12
     {
13
-        $controller = ModulesRepo::getControllerName($id);;
13
+        $controller = ModulesRepo::getControllerName($id); ;
14 14
 
15 15
         $data = [];
16 16
         $data['id'] = $id;
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/ControllerGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 
11 11
 class ControllerGenerator
12 12
 {
13
-    public static function generateController($table, $name = null){
13
+    public static function generateController($table, $name = null) {
14 14
 
15 15
         $controllerName = self::getControllerName($table, $name);
16 16
 
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/Step2Handler.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 class Step2Handler
9 9
 {
10 10
     private $hooks = ['hook_query_index', 'hook_row_index', 'hook_before_add', 'hook_after_add',
11
-        'hook_before_edit', 'hook_after_edit', 'hook_before_delete', 'hook_after_delete',];
11
+        'hook_before_edit', 'hook_after_edit', 'hook_before_delete', 'hook_after_delete', ];
12 12
 
13 13
     public function showForm($id)
14 14
     {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
         $data['cols'] = ScaffoldingParser::parse($controllerCode, 'col');
26 26
 
27 27
 
28
-        foreach($this->hooks as $hook){
28
+        foreach ($this->hooks as $hook) {
29 29
             $data[$hook] = FileManipulator::readMethodContent($controllerCode, $hook);
30 30
         }
31 31
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
         $code = FileManipulator::readCtrlContent($controller);
42 42
         $fileResult = \CB::replaceBetweenMark($code, 'COLUMNS', $newCode);
43 43
 
44
-        foreach($this->hooks as $hook){
44
+        foreach ($this->hooks as $hook) {
45 45
             $fileResult = FileManipulator::writeMethodContent($fileResult, $hook, request($hook));
46 46
         }
47 47
 
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
         $columnScript[] = '            $this->col[] = [];';
66 66
         foreach ($labels as $i => $label) {
67 67
 
68
-            if (! $name[$i]) {
68
+            if (!$name[$i]) {
69 69
                 continue;
70 70
             }
71 71
 
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/Step1Handler.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
         $icon = request('icon');
23 23
         $path = request('path');
24 24
 
25
-        if (! request('id')) {
25
+        if (!request('id')) {
26 26
             if (DB::table('cms_moduls')->where('path', $path)->where('deleted_at', null)->count()) {
27 27
                 backWithMsg('Sorry the slug has already exists, please choose another !', 'warning');
28 28
             }
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         if (file_exists(controller_path($row->controller))) {
40 40
             $response = FileManipulator::readCtrlContent(str_replace('.', '', $row->controller));
41
-        }else{
41
+        } else {
42 42
             $response = file_get_contents(__DIR__.'Step1Handler.php/'.str_replace('.', '', $row->controller).'.php');
43 43
         }
44 44
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
 
39 39
         if (file_exists(controller_path($row->controller))) {
40 40
             $response = FileManipulator::readCtrlContent(str_replace('.', '', $row->controller));
41
-        }else{
41
+        } else{
42 42
             $response = file_get_contents(__DIR__.'Step1Handler.php/'.str_replace('.', '', $row->controller).'.php');
43 43
         }
44 44
 
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/ControllerGenerator/FormConfigGenerator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,11 +138,11 @@
 block discarded – undo
138 138
         } elseif ($typeData == 'date') {
139 139
             $type = 'date';
140 140
             $validation[] = "date";
141
-            $options = ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY',];
141
+            $options = ['php_format' => 'M, d Y', 'datepicker_format' => 'M, dd YYYY', ];
142 142
         } elseif ($typeData == 'datetime' || $typeData == 'timestamp') {
143 143
             $type = 'datetime';
144 144
             $validation[] = "date_format:Y-m-d H:i:s";
145
-            $options = ['php_format' => 'M, d Y H:i',];
145
+            $options = ['php_format' => 'M, d Y H:i', ];
146 146
         } elseif ($typeData == 'time') {
147 147
             $type = 'time';
148 148
             $validation[] = 'date_format:H:i:s';
Please login to merge, or discard this patch.
src/Modules/ModuleGenerator/CbModulesGeneratorServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     public function boot()
16 16
     {
17 17
         $this->app['view']->addNamespace('CbModulesGen', __DIR__.'/views');
18
-        $this->loadRoutesFrom( __DIR__.'/module_generator_routes.php');
18
+        $this->loadRoutesFrom(__DIR__.'/module_generator_routes.php');
19 19
     }
20 20
 
21 21
     /**
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->primary_key = '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->button_export = 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.