| Conditions | 4 |
| Paths | 2 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 20 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function getData() |
||
| 31 | { |
||
| 32 | $data = parent::getData(); |
||
| 33 | |||
| 34 | //set customer details if set |
||
| 35 | 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 | return $data; |
||
| 43 | } |
||
| 44 | |||
| 72 |