Code Duplication    Length = 12-12 lines in 2 locations

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

@@ 79-90 (lines=12) @@
76
	 *
77
	 * @return mixed
78
	 */
79
	public static function get_site_id() {
80
		$is_wpcom = ( defined( 'IS_WPCOM' ) && IS_WPCOM );
81
		$site_id  = $is_wpcom ? get_current_blog_id() : Jetpack_Options::get_option( 'id' );
82
		if ( ! $site_id ) {
83
			return new WP_Error(
84
				'unavailable_site_id',
85
				__( 'Sorry, something is wrong with your Jetpack connection.', 'jetpack' ),
86
				403
87
			);
88
		}
89
		return (int) $site_id;
90
	}
91
}
92

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

@@ 69-80 (lines=12) @@
66
	 *
67
	 * @return mixed
68
	 */
69
	public static function get_site_id() {
70
		$is_wpcom = ( defined( 'IS_WPCOM' ) && IS_WPCOM );
71
		$site_id  = $is_wpcom ? get_current_blog_id() : Jetpack_Options::get_option( 'id' );
72
		if ( ! $site_id ) {
73
			return new WP_Error(
74
				'unavailable_site_id',
75
				__( 'Sorry, something is wrong with your Jetpack connection.', 'jetpack' ),
76
				403
77
			);
78
		}
79
		return (int) $site_id;
80
	}
81
}
82