You are here

PaymentDefault.php in Commerce Core 8.2

File

modules/payment/src/Plugin/Commerce/PaymentType/PaymentDefault.php
View source
<?php

namespace Drupal\commerce_payment\Plugin\Commerce\PaymentType;


/**
 * Provides the default payment type.
 *
 * @CommercePaymentType(
 *   id = "payment_default",
 *   label = @Translation("Default"),
 * )
 */
class PaymentDefault extends PaymentTypeBase {

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

}

Classes

Namesort descending Description
PaymentDefault Provides the default payment type.