Code Duplication    Length = 3-3 lines in 2 locations

src/wordlift/widgets/class-srcset-util.php 2 locations

@@ 20-22 (lines=3) @@
17
		$medium = get_the_post_thumbnail_url( $post_id, 'medium' );
18
		$large  = get_the_post_thumbnail_url( $post_id, 'large' );
19
20
		if ( $medium && $width = self::get_image_width( $post_id, 'medium' ) ) {
21
			$srcset[] = $medium . ' ' . $width . 'w';
22
		}
23
24
		if ( $large && $width = self::get_image_width( $post_id, 'large' ) ) {
25
			$srcset[] = $large . ' ' . $width . 'w';
@@ 24-26 (lines=3) @@
21
			$srcset[] = $medium . ' ' . $width . 'w';
22
		}
23
24
		if ( $large && $width = self::get_image_width( $post_id, 'large' ) ) {
25
			$srcset[] = $large . ' ' . $width . 'w';
26
		}
27
28
		$srcset_string = join( ",", $srcset );
29