public function PaymentGateway::getConditionOperator in Commerce Core 8.2
Gets the payment gateway condition operator.
Return value
string The condition operator. Possible values: AND, OR.
Overrides PaymentGatewayInterface::getConditionOperator
1 call to PaymentGateway::getConditionOperator()
- PaymentGateway::applies in modules/
payment/ src/ Entity/ PaymentGateway.php - Checks whether the payment gateway applies to the given order.
File
- modules/
payment/ src/ Entity/ PaymentGateway.php, line 209
Class
- PaymentGateway
- Defines the payment gateway entity class.
Namespace
Drupal\commerce_payment\EntityCode
public function getConditionOperator() {
return $this->conditionOperator;
}