You are here

function entity_share_cron_cron in Entity Share Cron 3.0.x

Same name and namespace in other branches
  1. 8.2 entity_share_cron.module \entity_share_cron_cron()
  2. 8 entity_share_cron.module \entity_share_cron_cron()

Implements hook_cron().

File

./entity_share_cron.module, line 15

Code

function entity_share_cron_cron() {
  return \Drupal::service('class_resolver')
    ->getInstanceFromDefinition(CronHookHandler::class)
    ->process();
}