You are here

public function UltimateCron::run in Ultimate Cron 8.2

Same name in this branch
  1. 8.2 src/UltimateCron.php \Drupal\ultimate_cron\UltimateCron::run()
  2. 8.2 src/ProxyClass/UltimateCron.php \Drupal\ultimate_cron\ProxyClass\UltimateCron::run()

Executes a cron run.

Do not call this function from a test. Use $this->cronRun() instead.

Return value

bool TRUE upon success, FALSE otherwise.

Overrides CronInterface::run

File

src/ProxyClass/UltimateCron.php, line 68

Class

UltimateCron
Provides a proxy class for \Drupal\ultimate_cron\UltimateCron.

Namespace

Drupal\ultimate_cron\ProxyClass

Code

public function run() {
  return $this
    ->lazyLoadItself()
    ->run();
}