You are here

public function PaymentGateway::setConditionOperator in Commerce Core 8.2

Sets the payment gateway condition operator.

Parameters

string $condition_operator: The condition operator.

Return value

$this

Overrides PaymentGatewayInterface::setConditionOperator

File

modules/payment/src/Entity/PaymentGateway.php, line 216

Class

PaymentGateway
Defines the payment gateway entity class.

Namespace

Drupal\commerce_payment\Entity

Code

public function setConditionOperator($condition_operator) {
  $this->conditionOperator = $condition_operator;
  return $this;
}