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

Jetpack_Sync_Settings::__callStatic()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
nc 2
nop 2
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A Jetpack_Sync_Settings::is_syncing() 0 4 1
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