| Conditions | 6 |
| Paths | 6 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function populate(array $array = []) |
||
| 50 | { |
||
| 51 | if ($this->id === null && empty($array['id'])) { |
||
| 52 | if (empty($array['createdDt'])) { |
||
| 53 | $array['createdDt'] = date('Y-m-d H:i:s.u'); |
||
| 54 | } |
||
| 55 | } |
||
| 56 | |||
| 57 | if (isset($array['calculatedVars']) && is_array($array['calculatedVars'])) { |
||
| 58 | $array['calculatedVars'] = json_encode($array['calculatedVars']); |
||
| 59 | } |
||
| 60 | |||
| 61 | return parent::populate($array); |
||
| 62 | } |
||
| 63 | } |
||
| 64 |