Completed
Push — update/deprecate-tracks-client... ( 015169 )
by
unknown
09:09
created

functions.php ➔ jetpack_compat_require_defined_functions()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * TODO: Legacy global scope functions here
5
 */
6
7
add_action( 'plugins_loaded', 'jetpack_compat_require_defined_functions' );
8
9
function jetpack_compat_require_defined_functions() {
10
	jetpack_require_lib( 'tracks/client' );
11
}
12