Completed
Push — branch-7.5 ( 77a868...58010c )
by
unknown
14:01 queued 05:48
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