You are here

ProductVariationEvent.php in Commerce Core 8.2

File

modules/product/src/Event/ProductVariationEvent.php
View source
<?php

namespace Drupal\commerce_product\Event;

use Drupal\commerce\EventBase;
use Drupal\commerce_product\Entity\ProductVariationInterface;

/**
 * Defines the product variation event.
 *
 * @see \Drupal\commerce_product\Event\ProductEvents
 */
class ProductVariationEvent extends EventBase {

  /**
   * The product variation.
   *
   * @var \Drupal\commerce_product\Entity\ProductVariationInterface
   */
  protected $productVariation;

  /**
   * Constructs a new ProductVariationEvent.
   *
   * @param \Drupal\commerce_product\Entity\ProductVariationInterface $product_variation
   *   The product variation.
   */
  public function __construct(ProductVariationInterface $product_variation) {
    $this->productVariation = $product_variation;
  }

  /**
   * Gets the product variation.
   *
   * @return \Drupal\commerce_product\Entity\ProductVariationInterface
   *   The product variation.
   */
  public function getProductVariation() {
    return $this->productVariation;
  }

}

Classes

Namesort descending Description
ProductVariationEvent Defines the product variation event.