Ejemplo n.º 1
0
 /**
  * @param Shipment $shipment
  * @param string $comment
  */
 public function __construct(Shipment $shipment, $comment)
 {
     $this->setId();
     $this->setCreated();
     $this->comment = (string) $comment;
     $shipment->addShipmentComment($this);
     $this->setShipment($shipment);
 }