Code Duplication    Length = 3-4 lines in 2 locations

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

@@ 1696-1698 (lines=3) @@
1693
									$type = 'array';
1694
									if ( is_array( $args['default'] ) ) {
1695
										$default = isset( $args['default'] ) ? "['" . implode( "','", $args['default'] ) . "']" : "[]";
1696
									} else {
1697
										$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1698
									}
1699
								} elseif ( $args['type'] == 'multiselect' ) {
1700
									$type    = 'array';
1701
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
@@ 1702-1705 (lines=4) @@
1699
								} elseif ( $args['type'] == 'multiselect' ) {
1700
									$type    = 'array';
1701
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1702
								} else {
1703
									$type    = 'string';
1704
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1705
								}
1706
								echo $key . " : {";
1707
								echo "type : '$type',";
1708
								echo "default : $default,";