Total Complexity | 3 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class Change extends Data { |
||
23 | |||
24 | protected const MAP = [ |
||
25 | 'added_value' => '*', |
||
26 | 'added_value*' => Event::GRAPH, |
||
27 | 'removed_value' => '*', |
||
28 | 'removed_value*' => Event::GRAPH, |
||
29 | 'new_value' => '*', |
||
30 | 'new_value*' => Event::GRAPH |
||
31 | ]; |
||
32 | |||
33 | protected function _setMapped (string $field, $value): void { |
||
39 | } |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @return null|number|string|User|Project|Section|Task|FieldEntry|Attachment|Story|Like |
||
44 | */ |
||
45 | public function getValue () { |
||
52 | } |
||
53 | } |