Repository URL to install this package:
|
Version:
2.0.0 ▾
|
<?php
namespace Drupal\custom_forms_payment\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a custom forms payment method plugin annotation object.
*
* @Annotation
*/
class CustomFormsPaymentMethod extends Plugin {
/**
* The custom forms field type ID.
*
* @var string
*/
public $id;
/**
* The custom forms field type name.
*
* @ingroup plugin_translatable
*
* @var \Drupal\Core\Annotation\Translation
*/
public $label;
}