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

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