You are here

public function OrderItemPromotionOfferBase::getConditionOperator in Commerce Core 8.2

Gets the condition operator.

Return value

string The condition operator. Possible values: AND, OR.

Overrides OrderItemPromotionOfferInterface::getConditionOperator

File

modules/promotion/src/Plugin/Commerce/PromotionOffer/OrderItemPromotionOfferBase.php, line 95

Class

OrderItemPromotionOfferBase
Provides the base class for order item offers.

Namespace

Drupal\commerce_promotion\Plugin\Commerce\PromotionOffer

Code

public function getConditionOperator() {
  return 'OR';
}