You are here

public function ProductVariation::getSku in Commerce Core 8.2

Get the variation SKU.

Return value

string The variation SKU.

Overrides ProductVariationInterface::getSku

File

modules/product/src/Entity/ProductVariation.php, line 159

Class

ProductVariation
Defines the product variation entity class.

Namespace

Drupal\commerce_product\Entity

Code

public function getSku() {
  return $this
    ->get('sku')->value;
}