You are here

public function Shipment::setChanged in Ubercart 8.4

Sets the last modified timestamp.

Parameters

int $changed: The last modified timestamp.

Return value

$this

Overrides ShipmentInterface::setChanged

File

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

Class

Shipment
Defines the Shipment class.

Namespace

Drupal\uc_fulfillment

Code

public function setChanged($changed) {
  $this->changed = $changed;
  return $this;
}