Code Duplication    Length = 7-7 lines in 2 locations

sync/class.jetpack-sync-module-themes.php 1 location

@@ 279-285 (lines=7) @@
276
	}
277
278
	public function check_upgrader( $upgrader, $details) {
279
		if ( ! isset( $details['type'] ) ||
280
		     'theme' !== $details['type'] ||
281
		     is_wp_error( $upgrader->skin->result ) ||
282
		     ! method_exists( $upgrader, 'theme_info' )
283
		) {
284
			return;
285
		}
286
287
		$theme = $upgrader->theme_info();
288
		if ( ! $theme instanceof WP_Theme ) {

sync/class.jetpack-sync-module-plugins.php 1 location

@@ 45-51 (lines=7) @@
42
			return;
43
		}
44
45
		if ( ! isset( $details['type'] ) ||
46
			'plugin' !== $details['type'] ||
47
			is_wp_error( $upgrader->skin->result ) ||
48
			! method_exists( $upgrader, 'plugin_info' )
49
		) {
50
			return;
51
		}
52
53
		if ( 'install' === $details['action'] ) {
54
			$plugin_path = $upgrader->plugin_info();