You are here

public function Shipment::setShipDate in Ubercart 8.4

Sets the ship date timestamp to the given value.

Parameters

int $ship_date: The ship date timestamp.

Return value

$this

Overrides ShipmentInterface::setShipDate

File

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

Class

Shipment
Defines the Shipment class.

Namespace

Drupal\uc_fulfillment

Code

public function setShipDate($ship_date) {
  $this->ship_date = $ship_date;
  return $this;
}