Completed
Push — update/api-get-site-endpoint ( 87e1bc )
by
unknown
09:51
created

WPORG_Platform   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 6
rs 10
c 2
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A get_site() 0 4 1
1
<?php
2
3
class WPORG_Platform extends SAL_Platform {
4
	static function get_site( $blog_id ) {
5
		require_once dirname( __FILE__ ) . '/class.json-api-site-jetpack.php';
6
		return new Jetpack_Site( $blog_id );
7
	}
8
}