You are here

function payment_form_entity_type_alter in Payment 8.2

Implements hook_entity_type_alter().

File

modules/payment_form/payment_form.module, line 12
Hook implementations and general functions.

Code

function payment_form_entity_type_alter(array &$entity_types) {

  /** @var \Drupal\Core\Entity\EntityTypeInterface $entity_type */
  $entity_type = $entity_types['payment'];
  $entity_type
    ->setFormClass('payment_form', PaymentForm::class);
}