Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | trait OldDBDataTrait |
||
10 | { |
||
11 | protected $dbData = []; |
||
12 | |||
13 | /** |
||
14 | * @param bool|array $data |
||
15 | * @deprecated use fillOriginal |
||
16 | */ |
||
17 | public function writeDBData($data = false) |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * @return array |
||
25 | * @deprecated use getOriginal |
||
26 | */ |
||
27 | public function getDBData() |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param $field |
||
34 | * @deprecated use originalIsEquivalent |
||
35 | * @return bool |
||
36 | */ |
||
37 | public function fieldUpdatedFromDb($field) |
||
42 |