Completed
Push — develop ( 39675e...5a1eb7 )
by David
02:50
created

Sync_Object_Adapter::__construct()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 28

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 4
nc 4
nop 3
dl 0
loc 28
rs 9.472
c 0
b 0
f 0
1
<?php
2
3
namespace Wordlift\Dataset;
4
5
interface Sync_Object_Adapter {
6
7
	function get_meta( $meta_key, $single );
8
9
	function update_meta( $meta_key, $meta_value );
10
11
	function is_published();
12
13
	function is_public();
14
15
}