You are here

function payment_entity_insert in Payment 8.2

Implements hook_entity_insert().

File

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

Code

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