commerce-8.x-2.8/modules/payment/src/Plugin/Commerce/PaymentType/PaymentManual.php
modules/payment/src/Plugin/Commerce/PaymentType/PaymentManual.php
<?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 [];
}
}
