Code Duplication    Length = 3-4 lines in 2 locations

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

@@ 1196-1198 (lines=3) @@
1193
									$type = 'array';
1194
									if ( is_array( $args['default'] ) ) {
1195
										$default = isset( $args['default'] ) ? "['" . implode( "','", $args['default'] ) . "']" : "[]";
1196
									} else {
1197
										$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1198
									}
1199
								} elseif ( $args['type'] == 'multiselect' ) {
1200
									$type    = 'array';
1201
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
@@ 1202-1205 (lines=4) @@
1199
								} elseif ( $args['type'] == 'multiselect' ) {
1200
									$type    = 'array';
1201
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1202
								} else {
1203
									$type    = 'string';
1204
									$default = isset( $args['default'] ) ? "'" . $args['default'] . "'" : "''";
1205
								}
1206
								echo $key . " : {";
1207
								echo "type : '$type',";
1208
								echo "default : $default,";