You are here

AcceptJs.php in Commerce Authorize.Net 8

File

src/Plugin/Commerce/PaymentType/AcceptJs.php
View source
<?php

namespace Drupal\commerce_authnet\Plugin\Commerce\PaymentType;

use Drupal\commerce_payment\Plugin\Commerce\PaymentType\PaymentTypeBase;

/**
 * Provides the payment type for Accept.js.
 *
 * @CommercePaymentType(
 *   id = "acceptjs",
 *   label = @Translation("Authorize.net (Accept.js)"),
 *   workflow = "payment_acceptjs"
 * )
 */
class AcceptJs extends PaymentTypeBase {

  /**
   * {@inheritdoc}
   */
  public function buildFieldDefinitions() {
    return [];
  }

}

Classes

Namesort descending Description
AcceptJs Provides the payment type for Accept.js.