public function Package::setWidth in Ubercart 8.4
Sets the package width.
Parameters
float $width: The package width.
Return value
$this
Overrides PackageInterface::setWidth
File
- shipping/
uc_fulfillment/ src/ Package.php, line 238
Class
- Package
- Defines the Package class.
Namespace
Drupal\uc_fulfillmentCode
public function setWidth($width) {
$this->width = $width;
return $this;
}