Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | class Entity implements IEntity |
||
10 | { |
||
11 | /** |
||
12 | * @var mixed[] |
||
13 | */ |
||
14 | private $_originalValues; |
||
15 | |||
16 | /** |
||
17 | * @param array $data |
||
18 | */ |
||
19 | 3 | public function __construct(array $data = []) { |
|
23 | } |
||
24 | 3 | } |
|
25 | |||
26 | /** |
||
27 | * @param string[] $properties List of concerned properties |
||
28 | * @return mixed[] |
||
29 | */ |
||
30 | 2 | public function getChangedProperties($properties) |
|
42 |