1 | <?php |
||
19 | class ShipmentUnit implements ShipmentUnitInterface |
||
20 | { |
||
21 | use TimestampableTrait; |
||
22 | |||
23 | /** |
||
24 | * @var mixed |
||
25 | */ |
||
26 | protected $id; |
||
27 | |||
28 | /** |
||
29 | * @var ShipmentInterface |
||
30 | */ |
||
31 | protected $shipment; |
||
32 | |||
33 | /** |
||
34 | * @var ShippableInterface |
||
35 | */ |
||
36 | protected $shippable; |
||
37 | |||
38 | /** |
||
39 | * @var string |
||
40 | */ |
||
41 | protected $shippingState = ShipmentInterface::STATE_READY; |
||
42 | |||
43 | public function __construct() |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function __toString() |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function getId() |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public function getShipment() |
||
71 | |||
72 | /** |
||
73 | * {@inheritdoc} |
||
74 | */ |
||
75 | public function setShipment(ShipmentInterface $shipment = null) |
||
79 | |||
80 | /** |
||
81 | * {@inheritdoc} |
||
82 | */ |
||
83 | public function getShippable() |
||
87 | |||
88 | /** |
||
89 | * {@inheritdoc} |
||
90 | */ |
||
91 | public function setShippable(ShippableInterface $shippable) |
||
95 | |||
96 | /** |
||
97 | * {@inheritdoc} |
||
98 | */ |
||
99 | public function getShippingState() |
||
103 | |||
104 | /** |
||
105 | * {@inheritdoc} |
||
106 | */ |
||
107 | public function setShippingState($state) |
||
111 | } |
||
112 |