ee280a3b044d9328b08b28815f4d318ee4e3d122
[yaffs-website] / web / core / modules / system / tests / modules / common_test_cron_helper / common_test_cron_helper.module
1 <?php
2
3 /**
4  * @file
5  * Helper module for the testCronExceptions in addition to common_test module.
6  */
7
8 /**
9  * Implements hook_cron().
10  *
11  * common_test_cron() throws an exception, but the execution should reach this
12  * function as well.
13  *
14  * @see common_test_cron()
15  */
16 function common_test_cron_helper_cron() {
17   \Drupal::state()->set('common_test.cron', 'success');
18 }