You are here

public function Shipment::setExpectedDelivery in Ubercart 8.4

Sets the expected delivery timestamp.

Parameters

int $expected_delivery: The expected delivery timestamp.

Return value

$this

Overrides ShipmentInterface::setExpectedDelivery

File

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

Class

Shipment
Defines the Shipment class.

Namespace

Drupal\uc_fulfillment

Code

public function setExpectedDelivery($expected_delivery) {
  $this->expected_delivery = $expected_delivery;
  return $this;
}