| 1 | <?php |
||
| 7 | class Transport |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | public $transporterCode; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | public $trackAndTraceCode; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | public $shipmentReference; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * TransportItem constructor. |
||
| 26 | * @param string $transporterCode |
||
| 27 | * @param string $trackingCode |
||
| 28 | * @param string $shipmentReference |
||
| 29 | */ |
||
| 30 | public function __construct(string $transporterCode, string $trackingCode, string $shipmentReference) |
||
| 36 | } |
||
| 37 |