You are here

PaymentManual.php in Commerce Core 8.2

File

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

namespace Drupal\commerce_payment\Plugin\Commerce\PaymentType;


/**
 * Provides the manual payment type.
 *
 * @CommercePaymentType(
 *   id = "payment_manual",
 *   label = @Translation("Manual"),
 *   workflow = "payment_manual",
 * )
 */
class PaymentManual extends PaymentTypeBase {

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

}

Classes

Namesort descending Description
PaymentManual Provides the manual payment type.