rules-8.x-3.x-dev/src/Event/SystemCronEvent.php
src/Event/SystemCronEvent.php
<?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';
}
