You are here

public function Simple::defaultConfiguration in Ultimate Cron 8.2

Default settings. @todo: $catch_up is randomly failing when value is low in some situation. 0 value is ignoring catch_up checks.

Overrides Crontab::defaultConfiguration

File

src/Plugin/ultimate_cron/Scheduler/Simple.php, line 35

Class

Simple
Simple scheduler.

Namespace

Drupal\ultimate_cron\Plugin\ultimate_cron\Scheduler

Code

public function defaultConfiguration() {
  return array(
    'rules' => array(
      '*/15+@ * * * *',
    ),
  ) + parent::defaultConfiguration();
}