Passed
Push — master ( 3a35a0...56f21d )
by Iman
04:00
created
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/commands/CrudboosterInstallationCommand.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         $printer->printHeader();
40 40
 
41
-        if(! ((new RequirementChecker($this))->check())) {
41
+        if (!((new RequirementChecker($this))->check())) {
42 42
             $this->info('Sorry unfortunately your system is not meet with our requirements !');
43 43
             $printer->printFooter(false);
44 44
             $this->info('--');
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
         $this->symlinkForAsset();
60 60
       
61 61
 
62
-		if($this->confirm('Do you have setting the database configuration at .env ?')) {
62
+		if ($this->confirm('Do you have setting the database configuration at .env ?')) {
63 63
             $this->installCrudbooster();
64
-		}else{
64
+		} else {
65 65
 			$this->info('Setup Aborted !');
66 66
 			$this->info('Please setting the database configuration for first !');
67 67
 		}
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         if (!file_exists($vendorPath)) {
111 111
             $this->info('Creating public/vendor/crudbooster symlink...');
112 112
             app('files')->link(__DIR__.'/../assets', public_path('vendor/crudbooster'));
113
-            return ;
113
+            return;
114 114
         }
115 115
 
116 116
         $this->info('Vendor Path: '.$vendorPath);
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
         $this->info('Migrating database...');
146 146
         $this->call('migrate', ['--path'=> '\database\migrations\crudbooster']);
147 147
 
148
-        if (! class_exists('CBSeeder')) {
148
+        if (!class_exists('CBSeeder')) {
149 149
             require_once __DIR__.'/../database/seeds/CBSeeder.php';
150 150
         }
151 151
         $this->callSilent('db:seed', ['--class' => 'CBSeeder']);
@@ -158,11 +158,11 @@  discard block
 block discarded – undo
158 158
     private function createVendorAtPublic()
159 159
     {
160 160
         $this->info('Checking public/vendor directory...');
161
-        if (! file_exists(public_path('vendor'))) {
161
+        if (!file_exists(public_path('vendor'))) {
162 162
             mkdir(public_path('vendor'), 0777);
163 163
         }
164 164
 
165
-        if (! is_writable(public_path('vendor'))) {
165
+        if (!is_writable(public_path('vendor'))) {
166 166
             $this->info('Setup aborted !');
167 167
             $this->info('Please set public/vendor directory to writable 0777');
168 168
             exit;
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
     */
174 174
     private function rrmdir($dir)
175 175
     {
176
-        if (! is_dir($dir)) {
176
+        if (!is_dir($dir)) {
177 177
             return;
178 178
         }
179 179
         foreach (scandir($dir) as $object) {
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/Modules/ModuleGenerator/Step2Handler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
         $columnScript[] = str_repeat(' ', 8).'$this->col[] = [];';
62 62
         foreach ($labels as $i => $label) {
63 63
 
64
-            if (! $name[$i]) {
64
+            if (!$name[$i]) {
65 65
                 continue;
66 66
             }
67 67
 
Please login to merge, or discard this patch.