| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.0261 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 42 | 8 | private function to_array($container) : array |
|
| 43 | { |
||
| 44 | 8 | if (is_array($container)) { |
|
| 45 | // This is a newly added subform, not yet saved, so it's already in view format |
||
| 46 | return $container; |
||
| 47 | } |
||
| 48 | 8 | $data = []; |
|
| 49 | |||
| 50 | 8 | foreach ($container as $field => $value) { |
|
| 51 | 8 | $data[$field] = $value->get_value(); |
|
| 52 | } |
||
| 53 | |||
| 54 | 8 | return $data; |
|
| 55 | } |
||
| 57 |