| Conditions | 2 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 2.0116 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 33 | 3 | public function toArray() |
|
| 34 | { |
||
| 35 | try { |
||
| 36 | 3 | $this->validate(); |
|
| 37 | |||
| 38 | return [ |
||
| 39 | 2 | 'status' => 'Canceled', |
|
| 40 | 2 | 'cancellationReason' => $this->getOrder()->getShipping()->getCancellationReason(), |
|
| 41 | ]; |
||
| 42 | 1 | } catch (\Exception $e) { |
|
| 43 | 1 | $this->fail('Canceled ('.$e->getMessage().')'); |
|
| 44 | } |
||
| 45 | } |
||
| 46 | } |
||
| 47 |