You are here

public function Shipment::setOrderId in Ubercart 8.4

Sets the order ID to the given value.

Parameters

int $order_id: The name of this order status.

Return value

$this

Overrides ShipmentInterface::setOrderId

File

shipping/uc_fulfillment/src/Shipment.php, line 134

Class

Shipment
Defines the Shipment class.

Namespace

Drupal\uc_fulfillment

Code

public function setOrderId($orderId) {
  $this->orderId = $orderId;
  return $this;
}