Code Duplication    Length = 3-4 lines in 2 locations

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

@@ 1168-1170 (lines=3) @@
1165
									$type = 'array';
1166
									if ( is_array( $args['default'] ) ) {
1167
										$default = isset( $args['default'] ) ? "['" . implode( "','", $args['default'] ) . "']" : "[]";
1168
									} else {
1169
										$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1170
									}
1171
								} elseif ( $args['type'] == 'multiselect' ) {
1172
									$type    = 'array';
1173
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
@@ 1174-1177 (lines=4) @@
1171
								} elseif ( $args['type'] == 'multiselect' ) {
1172
									$type    = 'array';
1173
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1174
								} else {
1175
									$type    = 'string';
1176
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1177
								}
1178
								echo $key . " : {";
1179
								echo "type : '$type',";
1180
								echo "default : $default,";