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

Sync_Object_Adapter::is_changed()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
nc 2
nop 0
dl 0
loc 6
rs 10
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
}