Code Duplication    Length = 12-12 lines in 2 locations

projects/plugins/jetpack/_inc/lib/class-jetpack-instagram-gallery-helper.php 1 location

@@ 103-114 (lines=12) @@
100
	 *
101
	 * @return mixed
102
	 */
103
	public static function get_site_id() {
104
		$is_wpcom = ( defined( 'IS_WPCOM' ) && IS_WPCOM );
105
		$site_id  = $is_wpcom ? get_current_blog_id() : Jetpack_Options::get_option( 'id' );
106
		if ( ! $site_id ) {
107
			return new WP_Error(
108
				'unavailable_site_id',
109
				__( 'Sorry, something is wrong with your Jetpack connection.', 'jetpack' ),
110
				403
111
			);
112
		}
113
		return (int) $site_id;
114
	}
115
}
116

projects/plugins/jetpack/_inc/lib/class-jetpack-tweetstorm-helper.php 1 location

@@ 1670-1681 (lines=12) @@
1667
	 *
1668
	 * @return mixed
1669
	 */
1670
	public static function get_site_id() {
1671
		$is_wpcom = ( defined( 'IS_WPCOM' ) && IS_WPCOM );
1672
		$site_id  = $is_wpcom ? get_current_blog_id() : Jetpack_Options::get_option( 'id' );
1673
		if ( ! $site_id ) {
1674
			return new WP_Error(
1675
				'unavailable_site_id',
1676
				__( 'Sorry, something is wrong with your Jetpack connection.', 'jetpack' ),
1677
				403
1678
			);
1679
		}
1680
		return (int) $site_id;
1681
	}
1682
}
1683