Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / CronInterface.php
1 <?php
2
3 namespace Drupal\Core;
4
5 /**
6  * An interface for running cron tasks.
7  *
8  * @see https://www.drupal.org/cron
9  */
10 interface CronInterface {
11
12   /**
13    * Executes a cron run.
14    *
15    * Do not call this function from a test. Use $this->cronRun() instead.
16    *
17    * @return bool
18    *   TRUE upon success, FALSE otherwise.
19    */
20   public function run();
21
22 }