You are here

SystemCronEvent.php in Rules 8.3

Namespace

Drupal\rules\Event

File

src/Event/SystemCronEvent.php
View source
<?php

namespace Drupal\rules\Event;

use Symfony\Component\EventDispatcher\GenericEvent;

/**
 * Event that is fired when cron maintenance tasks are performed.
 *
 * @see rules_cron()
 */
class SystemCronEvent extends GenericEvent {
  const EVENT_NAME = 'rules_system_cron';

}

Classes

Namesort descending Description
SystemCronEvent Event that is fired when cron maintenance tasks are performed.