Code Duplication    Length = 3-3 lines in 2 locations

modules/shortcodes/twitter-timeline.php 2 locations

@@ 25-27 (lines=3) @@
22
	if ( is_numeric( $atts['width'] ) ) {
23
		$output .= ' data-width="' . esc_attr( $atts['width'] ) . '"';
24
	}
25
	if ( is_numeric( $atts['height'] ) ) {
26
		$output .= ' data-height="' . esc_attr( $atts['height'] ) . '"';
27
	}
28
	if ( is_numeric( $atts['id'] ) ) {
29
		$output .= ' data-widget-id="' . esc_attr( $atts['id'] ) . '"';
30
	}
@@ 28-30 (lines=3) @@
25
	if ( is_numeric( $atts['height'] ) ) {
26
		$output .= ' data-height="' . esc_attr( $atts['height'] ) . '"';
27
	}
28
	if ( is_numeric( $atts['id'] ) ) {
29
		$output .= ' data-widget-id="' . esc_attr( $atts['id'] ) . '"';
30
	}
31
	if ( ! empty( $atts['username'] ) ) {
32
		$output .= ' href="' . esc_url( 'https://twitter.com/' . $atts['username'] ) . '"';
33
	}