You are here

protected function PaymentMethodBase::doExecutePayment in Payment 8.2

Performs the actual payment execution.

1 call to PaymentMethodBase::doExecutePayment()
PaymentMethodBase::executePayment in src/Plugin/Payment/Method/PaymentMethodBase.php
Executes the payment.
2 methods override PaymentMethodBase::doExecutePayment()
Basic::doExecutePayment in src/Plugin/Payment/Method/Basic.php
Performs the actual payment execution.
PaymentTestNoResponse::doExecutePayment in modules/payment_test/src/Plugin/Payment/Method/PaymentTestNoResponse.php
Performs the actual payment execution.

File

src/Plugin/Payment/Method/PaymentMethodBase.php, line 243

Class

PaymentMethodBase
A base payment method plugin.

Namespace

Drupal\payment\Plugin\Payment\Method

Code

protected function doExecutePayment() {

  // This method is empty so child classes can override it and provide their
  // own implementation.
}