You are here

public function Package::setHeight in Ubercart 8.4

Sets the package height.

Parameters

float $height: The package height.

Return value

$this

Overrides PackageInterface::setHeight

File

shipping/uc_fulfillment/src/Package.php, line 253

Class

Package
Defines the Package class.

Namespace

Drupal\uc_fulfillment

Code

public function setHeight($height) {
  $this->height = $height;
  return $this;
}