CronInterface.php 356 B

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