Code Duplication    Length = 13-13 lines in 2 locations

src/wp-includes/class-wp-customize-control.php 2 locations

@@ 553-565 (lines=13) @@
550
				</label>
551
				<?php
552
				break;
553
			case 'textarea':
554
				?>
555
				<label>
556
					<?php if ( ! empty( $this->label ) ) : ?>
557
						<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
558
					<?php endif;
559
					if ( ! empty( $this->description ) ) : ?>
560
						<span class="description customize-control-description"><?php echo $this->description; ?></span>
561
					<?php endif; ?>
562
					<textarea rows="5" <?php $this->input_attrs(); ?> <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>
563
				</label>
564
				<?php
565
				break;
566
			case 'dropdown-pages':
567
				?>
568
				<label>
@@ 629-641 (lines=13) @@
626
					</div>
627
				<?php endif;
628
				break;
629
			default:
630
				?>
631
				<label>
632
					<?php if ( ! empty( $this->label ) ) : ?>
633
						<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
634
					<?php endif;
635
					if ( ! empty( $this->description ) ) : ?>
636
						<span class="description customize-control-description"><?php echo $this->description; ?></span>
637
					<?php endif; ?>
638
					<input type="<?php echo esc_attr( $this->type ); ?>" <?php $this->input_attrs(); ?> value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->link(); ?> />
639
				</label>
640
				<?php
641
				break;
642
		}
643
	}
644