Code Duplication    Length = 3-4 lines in 2 locations

vendor/ayecode/wp-super-duper/wp-super-duper.php 2 locations

@@ 1440-1442 (lines=3) @@
1437
									$type = 'array';
1438
									if ( is_array( $args['default'] ) ) {
1439
										$default = isset( $args['default'] ) ? "['" . implode( "','", $args['default'] ) . "']" : "[]";
1440
									} else {
1441
										$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1442
									}
1443
								} elseif ( $args['type'] == 'multiselect' ) {
1444
									$type    = 'array';
1445
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
@@ 1446-1449 (lines=4) @@
1443
								} elseif ( $args['type'] == 'multiselect' ) {
1444
									$type    = 'array';
1445
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1446
								} else {
1447
									$type    = 'string';
1448
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1449
								}
1450
								echo $key . " : {";
1451
								echo "type : '$type',";
1452
								echo "default : $default,";