| Conditions | 4 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 6.7441 |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 30 | 2 | public function getData() |
|
| 31 | { |
||
| 32 | 2 | $data = parent::getData(); |
|
| 33 | |||
| 34 | //set customer details if set |
||
| 35 | 2 | if (($customerDetails = $this->getParameter('uppCustomerDetails')) && is_array($customerDetails)) { |
|
| 36 | $data['uppCustomerDetails'] = 'yes'; |
||
| 37 | foreach ($customerDetails as $key => $value) { |
||
| 38 | $data[$key] = $value; |
||
| 39 | } |
||
| 40 | } |
||
| 41 | |||
| 42 | 2 | return $data; |
|
| 43 | } |
||
| 44 | |||
| 72 |