You are here

public function ShippingQuoteMethod::getWeight in Ubercart 8.4

Returns the weight of this shipping quote method (used for sorting).

Return value

int The shipping quote method weight.

Overrides ShippingQuoteMethodInterface::getWeight

File

shipping/uc_quote/src/Entity/ShippingQuoteMethod.php, line 91

Class

ShippingQuoteMethod
Defines the shipping quote method configuration entity.

Namespace

Drupal\uc_quote\Entity

Code

public function getWeight() {
  return $this->weight;
}