SystemCronEvent.php

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

Title Deprecated Summary
SystemCronEvent Event that is fired when cron maintenance tasks are performed.