Ejemplo n.º 1
0
 public function addShipment(Shipment $shipment)
 {
     $shipment->setOrder($this);
     $this->shipments->add($shipment);
     $this->setOrderShippedStatus();
     $this->raise(new OrderShippedEvent($this->getId(), $shipment->getId()));
 }