You are here

public function Package::setValue in Ubercart 8.4

Sets the package monetary value.

Parameters

float $value: The monetary value.

Return value

$this

Overrides PackageInterface::setValue

File

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

Class

Package
Defines the Package class.

Namespace

Drupal\uc_fulfillment

Code

public function setValue($value) {
  $this->value = $value;
  return $this;
}