Passed
Push — master ( 3c2be5...ef5ef1 )
by Ferry
03:56
created
src/types/TypesHook.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,12 +26,12 @@
 block discarded – undo
26 26
 
27 27
     public function indexRender($row, $column)
28 28
     {
29
-        return (isset($row->{$column->getField()}))?$row->{ $column->getField() }:null;
29
+        return (isset($row->{$column->getField()})) ? $row->{ $column->getField() }:null;
30 30
     }
31 31
 
32 32
     public function detailRender($row, $column)
33 33
     {
34
-        return (isset($row->{$column->getField()}))?$row->{ $column->getField() }:null;
34
+        return (isset($row->{$column->getField()})) ? $row->{ $column->getField() }:null;
35 35
     }
36 36
 
37 37
     /**
Please login to merge, or discard this patch.
src/commands/Install.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
         if ($this->confirm('Do you have setting the database configuration at .env ?')) {
41 41
 
42
-            if (! file_exists(public_path('vendor')) ) {
42
+            if (!file_exists(public_path('vendor'))) {
43 43
                 mkdir(public_path('vendor'), 0777);
44 44
             }
45 45
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     {
172 172
 
173 173
         $password = Str::random(16);
174
-        cache()->forever("developer_password",$password);
174
+        cache()->forever("developer_password", $password);
175 175
 
176 176
         $this->info('--');
177 177
         $this->info("DEVELOPER AREA");
Please login to merge, or discard this patch.
src/helpers/ModuleGenerator.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -41,12 +41,12 @@  discard block
 block discarded – undo
41 41
     }
42 42
 
43 43
     public function make() {
44
-        $name = ($this->name)?:ucwords(str_replace("_"," ",$this->table));
44
+        $name = ($this->name) ?: ucwords(str_replace("_", " ", $this->table));
45 45
 
46 46
         $template = file_get_contents(__DIR__."/../templates/FooBarController.stub");
47 47
 
48 48
         //Replace table
49
-        $template = str_replace("{table}",'"'.$this->table.'"', $template);
49
+        $template = str_replace("{table}", '"'.$this->table.'"', $template);
50 50
 
51 51
         //Replace permalink
52 52
         $template = str_replace("{permalink}", '"'.$this->table.'"', $template);
@@ -57,13 +57,13 @@  discard block
 block discarded – undo
57 57
         //Replace scaffolding
58 58
         $fields = DB::getSchemaBuilder()->getColumnListing($this->table);
59 59
         $primaryKey = cb()->findPrimaryKey($this->table);
60
-        $exceptions = [$primaryKey,'created_at','updated_at'];
60
+        $exceptions = [$primaryKey, 'created_at', 'updated_at'];
61 61
         $scaffold = "";
62
-        foreach($fields as $field) {
62
+        foreach ($fields as $field) {
63 63
 
64
-            if(in_array($field, $exceptions)) continue;
64
+            if (in_array($field, $exceptions)) continue;
65 65
 
66
-            $fielLabel = ucwords(str_replace("_"," ",$field));
66
+            $fielLabel = ucwords(str_replace("_", " ", $field));
67 67
             $scaffold .= '$this->addText("'.$fielLabel.'");'."\n\t\t";
68 68
         }
69 69
         $template = str_replace("{scaffolding}", $scaffold, $template);
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,9 @@
 block discarded – undo
61 61
         $scaffold = "";
62 62
         foreach($fields as $field) {
63 63
 
64
-            if(in_array($field, $exceptions)) continue;
64
+            if(in_array($field, $exceptions)) {
65
+                continue;
66
+            }
65 67
 
66 68
             $fielLabel = ucwords(str_replace("_"," ",$field));
67 69
             $scaffold .= '$this->addText("'.$fielLabel.'");'."\n\t\t";
Please login to merge, or discard this patch.
src/views/dev_layouts/modules/menus/form.blade.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -149,21 +149,21 @@
 block discarded – undo
149 149
                     <?php
150 150
                     $font = new \crocodicstudio\crudbooster\helpers\FontAwesome();
151 151
                     $fontData = [
152
-                        ["data"=>$font->text(),"label"=>"Text"],
153
-                        ["data"=>$font->web(),"label"=>"Web"],
154
-                        ["data"=>$font->video(),"label"=>"Video"],
155
-                        ["data"=>$font->transportation(),"label"=>"Transportation"],
156
-                        ["data"=>$font->payment(),"label"=>"Payment"],
157
-                        ["data"=>$font->medical(),"label"=>"Medical"],
158
-                        ["data"=>$font->hand(),"label"=>"Hand"],
159
-                        ["data"=>$font->fileType(),"label"=>"File Type"],
160
-                        ["data"=>$font->directional(),"label"=>"Directional"],
161
-                        ["data"=>$font->currency(),"label"=>"Currency"],
162
-                        ["data"=>$font->chart(),"label"=>"Chart"],
163
-                        ["data"=>$font->brands(),"label"=>"Brand"],
164
-                        ["data"=>$font->gender(),"label"=>"Gender"],
165
-                        ["data"=>$font->form(),"label"=>"Form"],
166
-                        ["data"=>$font->spinner(),"label"=>"Spinner"]
152
+                        ["data"=>$font->text(), "label"=>"Text"],
153
+                        ["data"=>$font->web(), "label"=>"Web"],
154
+                        ["data"=>$font->video(), "label"=>"Video"],
155
+                        ["data"=>$font->transportation(), "label"=>"Transportation"],
156
+                        ["data"=>$font->payment(), "label"=>"Payment"],
157
+                        ["data"=>$font->medical(), "label"=>"Medical"],
158
+                        ["data"=>$font->hand(), "label"=>"Hand"],
159
+                        ["data"=>$font->fileType(), "label"=>"File Type"],
160
+                        ["data"=>$font->directional(), "label"=>"Directional"],
161
+                        ["data"=>$font->currency(), "label"=>"Currency"],
162
+                        ["data"=>$font->chart(), "label"=>"Chart"],
163
+                        ["data"=>$font->brands(), "label"=>"Brand"],
164
+                        ["data"=>$font->gender(), "label"=>"Gender"],
165
+                        ["data"=>$font->form(), "label"=>"Form"],
166
+                        ["data"=>$font->spinner(), "label"=>"Spinner"]
167 167
                     ];
168 168
                     ?>
169 169
                     @foreach($fontData as $f)
Please login to merge, or discard this patch.
assets/adminlte/bower_components/ckeditor/samples/old/assets/posteddata.php 3 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -27,22 +27,22 @@
 block discarded – undo
27 27
 
28 28
 if (!empty($_POST))
29 29
 {
30
-	foreach ( $_POST as $key => $value )
31
-	{
32
-		if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) )
33
-			continue;
30
+    foreach ( $_POST as $key => $value )
31
+    {
32
+        if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) )
33
+            continue;
34 34
 
35
-		if ( get_magic_quotes_gpc() )
36
-			$value = htmlspecialchars( stripslashes((string)$value) );
37
-		else
38
-			$value = htmlspecialchars( (string)$value );
35
+        if ( get_magic_quotes_gpc() )
36
+            $value = htmlspecialchars( stripslashes((string)$value) );
37
+        else
38
+            $value = htmlspecialchars( (string)$value );
39 39
 ?>
40 40
 		<tr>
41 41
 			<th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th>
42 42
 			<td><pre class="samples"><?php echo $value; ?></pre></td>
43 43
 		</tr>
44 44
 	<?php
45
-	}
45
+    }
46 46
 }
47 47
 ?>
48 48
 	</table>
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -27,18 +27,18 @@
 block discarded – undo
27 27
 
28 28
 if (!empty($_POST))
29 29
 {
30
-	foreach ( $_POST as $key => $value )
30
+	foreach ($_POST as $key => $value)
31 31
 	{
32
-		if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) )
32
+		if ((!is_string($value) && !is_numeric($value)) || !is_string($key))
33 33
 			continue;
34 34
 
35
-		if ( get_magic_quotes_gpc() )
36
-			$value = htmlspecialchars( stripslashes((string)$value) );
35
+		if (get_magic_quotes_gpc())
36
+			$value = htmlspecialchars(stripslashes((string) $value));
37 37
 		else
38
-			$value = htmlspecialchars( (string)$value );
38
+			$value = htmlspecialchars((string) $value);
39 39
 ?>
40 40
 		<tr>
41
-			<th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th>
41
+			<th style="vertical-align: top"><?php echo htmlspecialchars((string) $key); ?></th>
42 42
 			<td><pre class="samples"><?php echo $value; ?></pre></td>
43 43
 		</tr>
44 44
 	<?php
Please login to merge, or discard this patch.
Braces   +9 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,14 +29,16 @@
 block discarded – undo
29 29
 {
30 30
 	foreach ( $_POST as $key => $value )
31 31
 	{
32
-		if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) )
33
-			continue;
32
+		if ( ( !is_string($value) && !is_numeric($value) ) || !is_string($key) ) {
33
+					continue;
34
+		}
34 35
 
35
-		if ( get_magic_quotes_gpc() )
36
-			$value = htmlspecialchars( stripslashes((string)$value) );
37
-		else
38
-			$value = htmlspecialchars( (string)$value );
39
-?>
36
+		if ( get_magic_quotes_gpc() ) {
37
+					$value = htmlspecialchars( stripslashes((string)$value) );
38
+		} else {
39
+					$value = htmlspecialchars( (string)$value );
40
+		}
41
+		?>
40 42
 		<tr>
41 43
 			<th style="vertical-align: top"><?php echo htmlspecialchars( (string)$key ); ?></th>
42 44
 			<td><pre class="samples"><?php echo $value; ?></pre></td>
Please login to merge, or discard this patch.
src/views/dev_layouts/modules/modules/add.blade.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -149,21 +149,21 @@
 block discarded – undo
149 149
                     <?php
150 150
                     $font = new \crocodicstudio\crudbooster\helpers\FontAwesome();
151 151
                     $fontData = [
152
-                        ["data"=>$font->text(),"label"=>"Text"],
153
-                        ["data"=>$font->web(),"label"=>"Web"],
154
-                        ["data"=>$font->video(),"label"=>"Video"],
155
-                        ["data"=>$font->transportation(),"label"=>"Transportation"],
156
-                        ["data"=>$font->payment(),"label"=>"Payment"],
157
-                        ["data"=>$font->medical(),"label"=>"Medical"],
158
-                        ["data"=>$font->hand(),"label"=>"Hand"],
159
-                        ["data"=>$font->fileType(),"label"=>"File Type"],
160
-                        ["data"=>$font->directional(),"label"=>"Directional"],
161
-                        ["data"=>$font->currency(),"label"=>"Currency"],
162
-                        ["data"=>$font->chart(),"label"=>"Chart"],
163
-                        ["data"=>$font->brands(),"label"=>"Brand"],
164
-                        ["data"=>$font->gender(),"label"=>"Gender"],
165
-                        ["data"=>$font->form(),"label"=>"Form"],
166
-                        ["data"=>$font->spinner(),"label"=>"Spinner"]
152
+                        ["data"=>$font->text(), "label"=>"Text"],
153
+                        ["data"=>$font->web(), "label"=>"Web"],
154
+                        ["data"=>$font->video(), "label"=>"Video"],
155
+                        ["data"=>$font->transportation(), "label"=>"Transportation"],
156
+                        ["data"=>$font->payment(), "label"=>"Payment"],
157
+                        ["data"=>$font->medical(), "label"=>"Medical"],
158
+                        ["data"=>$font->hand(), "label"=>"Hand"],
159
+                        ["data"=>$font->fileType(), "label"=>"File Type"],
160
+                        ["data"=>$font->directional(), "label"=>"Directional"],
161
+                        ["data"=>$font->currency(), "label"=>"Currency"],
162
+                        ["data"=>$font->chart(), "label"=>"Chart"],
163
+                        ["data"=>$font->brands(), "label"=>"Brand"],
164
+                        ["data"=>$font->gender(), "label"=>"Gender"],
165
+                        ["data"=>$font->form(), "label"=>"Form"],
166
+                        ["data"=>$font->spinner(), "label"=>"Spinner"]
167 167
                     ];
168 168
                     ?>
169 169
                     @foreach($fontData as $f)
Please login to merge, or discard this patch.
src/views/dev_layouts/modules/modules/edit.blade.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -149,21 +149,21 @@
 block discarded – undo
149 149
                     <?php
150 150
                     $font = new \crocodicstudio\crudbooster\helpers\FontAwesome();
151 151
                     $fontData = [
152
-                        ["data"=>$font->text(),"label"=>"Text"],
153
-                        ["data"=>$font->web(),"label"=>"Web"],
154
-                        ["data"=>$font->video(),"label"=>"Video"],
155
-                        ["data"=>$font->transportation(),"label"=>"Transportation"],
156
-                        ["data"=>$font->payment(),"label"=>"Payment"],
157
-                        ["data"=>$font->medical(),"label"=>"Medical"],
158
-                        ["data"=>$font->hand(),"label"=>"Hand"],
159
-                        ["data"=>$font->fileType(),"label"=>"File Type"],
160
-                        ["data"=>$font->directional(),"label"=>"Directional"],
161
-                        ["data"=>$font->currency(),"label"=>"Currency"],
162
-                        ["data"=>$font->chart(),"label"=>"Chart"],
163
-                        ["data"=>$font->brands(),"label"=>"Brand"],
164
-                        ["data"=>$font->gender(),"label"=>"Gender"],
165
-                        ["data"=>$font->form(),"label"=>"Form"],
166
-                        ["data"=>$font->spinner(),"label"=>"Spinner"]
152
+                        ["data"=>$font->text(), "label"=>"Text"],
153
+                        ["data"=>$font->web(), "label"=>"Web"],
154
+                        ["data"=>$font->video(), "label"=>"Video"],
155
+                        ["data"=>$font->transportation(), "label"=>"Transportation"],
156
+                        ["data"=>$font->payment(), "label"=>"Payment"],
157
+                        ["data"=>$font->medical(), "label"=>"Medical"],
158
+                        ["data"=>$font->hand(), "label"=>"Hand"],
159
+                        ["data"=>$font->fileType(), "label"=>"File Type"],
160
+                        ["data"=>$font->directional(), "label"=>"Directional"],
161
+                        ["data"=>$font->currency(), "label"=>"Currency"],
162
+                        ["data"=>$font->chart(), "label"=>"Chart"],
163
+                        ["data"=>$font->brands(), "label"=>"Brand"],
164
+                        ["data"=>$font->gender(), "label"=>"Gender"],
165
+                        ["data"=>$font->form(), "label"=>"Form"],
166
+                        ["data"=>$font->spinner(), "label"=>"Spinner"]
167 167
                     ];
168 168
                     ?>
169 169
                     @foreach($fontData as $f)
Please login to merge, or discard this patch.
src/configs/crudbooster.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,16 +26,16 @@
 block discarded – undo
26 26
     /*
27 27
      * For security reason we have limit the upload file formats bellow
28 28
      */
29
-    'UPLOAD_FILE_EXTENSION_ALLOWED' => ['jpg','jpeg','png','gif','pdf','xls','xlsx','doc','docx','txt','zip','rar','rtf'],
29
+    'UPLOAD_FILE_EXTENSION_ALLOWED' => ['jpg', 'jpeg', 'png', 'gif', 'pdf', 'xls', 'xlsx', 'doc', 'docx', 'txt', 'zip', 'rar', 'rtf'],
30 30
 
31
-    'UPLOAD_IMAGE_EXTENSION_ALLOWED' => ['jpg','jpeg','png','gif'],
31
+    'UPLOAD_IMAGE_EXTENSION_ALLOWED' => ['jpg', 'jpeg', 'png', 'gif'],
32 32
 
33 33
     /*
34 34
      * Data Migration table additional
35 35
      * You can define in this array what the tables you want to include in "php artisan crudbooster:data_migration"
36 36
      * The default is all cb_ prefix will be include in data migration
37 37
      */
38
-    'ADDITIONAL_DATA_MIGRATION'=>['users','migrations'],
38
+    'ADDITIONAL_DATA_MIGRATION'=>['users', 'migrations'],
39 39
 
40 40
     /*
41 41
      * Google FCM Server Key is used to send a notification via FireBase cloud message
Please login to merge, or discard this patch.
src/commands/MigrateData.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
     public function handle()
33 33
     {
34 34
 
35
-        if($this->option("generate")) {
35
+        if ($this->option("generate")) {
36 36
             $this->info("== Generating Seeder ==");
37 37
             $this->generateSeeder();
38 38
             $this->info("== Finish ==");
39
-        }else{
39
+        } else {
40 40
             $this->info("== Importing the seeder ==");
41
-            $this->call("db:seed",["--class"=>"CbMigrationSeeder"]);
41
+            $this->call("db:seed", ["--class"=>"CbMigrationSeeder"]);
42 42
             $this->info("== Finish ==");
43 43
         }
44 44
 
@@ -50,18 +50,18 @@  discard block
 block discarded – undo
50 50
         $php_string = "";
51 51
         $additional_tables = cbConfig("ADDITIONAL_DATA_MIGRATION");
52 52
 
53
-        foreach($tables as $table) {
54
-            if(substr($table,0,3) == "cb_" || in_array($table, $additional_tables)) {
53
+        foreach ($tables as $table) {
54
+            if (substr($table, 0, 3) == "cb_" || in_array($table, $additional_tables)) {
55 55
                 $this->info("Create seeder for table : ".$table);
56 56
                 $rows = DB::table($table)->get();
57 57
                 $data = [];
58
-                foreach($rows as $i=>$row) {
58
+                foreach ($rows as $i=>$row) {
59 59
                     $data[$i] = [];
60
-                    foreach($row as $key=>$val) {
60
+                    foreach ($row as $key=>$val) {
61 61
                         $data[$i][$key] = $val;
62 62
                     }
63 63
                 }
64
-                if(count($data)!=0) {
64
+                if (count($data) != 0) {
65 65
                     $php_string .= 'DB::table(\''.$table.'\')->delete();'."\n\t\t\t";
66 66
                     $php_string .= 'DB::table(\''.$table.'\')->insert('.min_var_export($data).');'."\n\t\t\t";
67 67
                 }
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $composer_path = '';
92 92
         if (file_exists(getcwd().'/composer.phar')) {
93 93
             $composer_path = '"'.PHP_BINARY.'" '.getcwd().'/composer.phar';
94
-        }else{
94
+        } else {
95 95
             $composer_path = 'composer';
96 96
         }
97 97
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
             $this->info("== Generating Seeder ==");
37 37
             $this->generateSeeder();
38 38
             $this->info("== Finish ==");
39
-        }else{
39
+        } else{
40 40
             $this->info("== Importing the seeder ==");
41 41
             $this->call("db:seed",["--class"=>"CbMigrationSeeder"]);
42 42
             $this->info("== Finish ==");
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         $composer_path = '';
92 92
         if (file_exists(getcwd().'/composer.phar')) {
93 93
             $composer_path = '"'.PHP_BINARY.'" '.getcwd().'/composer.phar';
94
-        }else{
94
+        } else{
95 95
             $composer_path = 'composer';
96 96
         }
97 97
 
Please login to merge, or discard this patch.