You are here

CombinationOfferInterface.php in Commerce Core 8.2

File

modules/promotion/src/Plugin/Commerce/PromotionOffer/CombinationOfferInterface.php
View source
<?php

namespace Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer;


/**
 * Defines the interface for the combination offer.
 */
interface CombinationOfferInterface extends OrderPromotionOfferInterface {

  /**
   * Gets the offers configured.
   *
   * @return \Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer\PromotionOfferInterface[]
   *   The offers configured.
   */
  public function getOffers();

}

Interfaces

Namesort descending Description
CombinationOfferInterface Defines the interface for the combination offer.