| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 16 | 
| Code Lines | 13 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 24 | public function getSchema() | ||
| 25 |     { | ||
| 26 | return [ | ||
| 27 | 'shippingCode' => 'integer', | ||
| 28 | 'customer' => 'object', | ||
| 29 | 'freightAmount' => 'number', | ||
| 30 | 'invoice' => 'object', | ||
| 31 | 'items' => 'object', | ||
| 32 | 'sender' => 'object', | ||
| 33 | 'status' => 'string', | ||
| 34 | 'transport' => 'object', | ||
| 35 | 'country' => 'string', | ||
| 36 | 'cancellationReason' => 'string', | ||
| 37 | 'devolutionItems' => 'object', | ||
| 38 | ]; | ||
| 39 | } | ||
| 40 | } | ||
| 41 |