| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 3 | public function fieldDefinitions() |
|
| 26 | { |
||
| 27 | return [ |
||
| 28 | 3 | 'id' => [static::TYPE => 'string'], |
|
| 29 | 'createdAt' => [ |
||
| 30 | 3 | static::TYPE => '\DateTime', |
|
| 31 | 3 | static::DECORATOR => '\Commercetools\Core\Model\Common\DateTimeDecorator' |
|
| 32 | ], |
||
| 33 | 3 | 'measurements' => [static::TYPE => '\Commercetools\Core\Model\Order\ParcelMeasurements'], |
|
| 34 | 3 | 'trackingData' => [static::TYPE => '\Commercetools\Core\Model\Order\TrackingData'], |
|
| 35 | ]; |
||
| 36 | } |
||
| 37 | } |
||
| 38 |