public function EntityUsageTest::usageAddEventRecorder in Entity Usage 8
Reacts to save event.
Parameters
\Drupal\entity_usage\Events\EntityUsageEvent $event: The entity usage event.
string $name: The name of the event.
File
- tests/src/ Kernel/ EntityUsageTest.php, line 356 
Class
- EntityUsageTest
- Tests the basic API operations of our tracking service..
Namespace
Drupal\Tests\entity_usage\KernelCode
public function usageAddEventRecorder(EntityUsageEvent $event, $name) {
  $this->state
    ->set('entity_usage_events_test.usage_add', [
    'event_name' => $name,
    'target_id' => $event
      ->getTargetEntityId(),
    'target_type' => $event
      ->getTargetEntityType(),
    'referencing_id' => $event
      ->getReferencingEntityId(),
    'referencing_type' => $event
      ->getReferencingEntityType(),
    'method' => $event
      ->getReferencingMethod(),
    'count' => $event
      ->getCount(),
  ]);
}