You are here

function payment_entity_delete in Payment 8.2

Implements hook_entity_delete().

File

./payment.module, line 20
Contains hook implementations.

Code

function payment_entity_delete(EntityInterface $entity) {
  return \Drupal::service('payment.hook.entity_crud')
    ->invoke($entity);
}