You are here

HasPaymentInstructionsInterface.php in Commerce Core 8.2

File

modules/payment/src/Plugin/Commerce/PaymentGateway/HasPaymentInstructionsInterface.php
View source
<?php

namespace Drupal\commerce_payment\Plugin\Commerce\PaymentGateway;

use Drupal\commerce_payment\Entity\PaymentInterface;

/**
 * Defines the interface for gateways which show payment instructions.
 *
 * Payment instructions are usually shown on checkout complete.
 */
interface HasPaymentInstructionsInterface {

  /**
   * Builds the payment instructions.
   *
   * @param \Drupal\commerce_payment\Entity\PaymentInterface $payment
   *   The payment.
   *
   * @return array
   *   A render array containing the payment instructions.
   */
  public function buildPaymentInstructions(PaymentInterface $payment);

}

Interfaces

Namesort descending Description
HasPaymentInstructionsInterface Defines the interface for gateways which show payment instructions.