| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 2 | public function execute(ProcessState $state) |
|
| 19 | { |
||
| 20 | 2 | $data = $state->getOptions()['init_data']; |
|
| 21 | |||
| 22 | 2 | if (is_array($data)) { |
|
| 23 | 1 | $data = array_merge($data, $state->getOptions()['mapping']); |
|
| 24 | } else { |
||
| 25 | 1 | $data = $state->getOptions()['mapping']; |
|
| 26 | } |
||
| 27 | |||
| 28 | 2 | $state->setData($data); |
|
| 29 | 2 | $this->describe($state); |
|
| 30 | 2 | } |
|
| 37 |