| Conditions | 3 |
| Paths | 4 |
| Total Lines | 18 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function load($data, $formName = '') |
||
| 17 | { |
||
| 18 | if (isset($data['quantity'])) { |
||
| 19 | $quantity = new QuantityDto(); |
||
| 20 | $quantity->load($data['quantity']); |
||
| 21 | |||
| 22 | $data['quantity'] = $quantity; |
||
| 23 | } |
||
| 24 | |||
| 25 | if (isset($data['target'])) { |
||
| 26 | $target = new TargetDto(); |
||
| 27 | $target->load($data['target']); |
||
| 28 | |||
| 29 | $data['target'] = $target; |
||
| 30 | } |
||
| 31 | |||
| 32 | return $this->setAttributes($data); |
||
| 33 | } |
||
| 34 | |||
| 44 |