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

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