Completed
Push — add/legacy-class.jetpack-sync-... ( c7e819...b6e04e )
by
unknown
74:07 queued 64:49
created

Jetpack_Sync_Settings::is_syncing()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
use Automattic\Jetpack\Sync\Settings;
4
5
/**
6
 * Class Jetpack_Sync_Settings
7
 *
8
 * @deprecated Use Automattic\Jetpack\Sync\Settings
9
 */
10
class Jetpack_Sync_Settings {
11
12
	static function is_syncing() {
13
		_deprecated_function( __METHOD__, 'jetpack-7.5', 'Automattic\Jetpack\Sync\Settings' );
14
		return Settings::is_syncing();
15
	}
16
17
}
18