Ejemplo n.º 1
0
 public function __construct(Shipment $shipment, OrderItem $orderItem, $quantityToShip)
 {
     $this->setId();
     $this->setCreated();
     $this->orderItem = $orderItem;
     $this->quantityToShip = (int) $quantityToShip;
     $shipment->addShipmentItem($this);
     $this->shipment = $shipment;
 }