diff options
author | Etienne Baroux <barouxe@phelma.grenoble-inp.fr> | 2014-06-02 12:17:37 +0200 |
---|---|---|
committer | Etienne Baroux <barouxe@phelma.grenoble-inp.fr> | 2014-06-02 12:17:37 +0200 |
commit | 58d7302b495783edd6e0826c100ffa93acb0693d (patch) | |
tree | 0bf3968c3f4d636e34ea7aa7847af10f0d44f20b /tests/console/cron/tasks/simple_not_ready.php | |
parent | 48679eeff884ce564f7a5ceb7db1b6c64e5dcb67 (diff) | |
download | forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar.gz forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar.bz2 forums-58d7302b495783edd6e0826c100ffa93acb0693d.tar.xz forums-58d7302b495783edd6e0826c100ffa93acb0693d.zip |
[ticket/12602] Add files to print the cron list and test files.
PHPBB3-12602
Diffstat (limited to 'tests/console/cron/tasks/simple_not_ready.php')
-rw-r--r-- | tests/console/cron/tasks/simple_not_ready.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/console/cron/tasks/simple_not_ready.php b/tests/console/cron/tasks/simple_not_ready.php new file mode 100644 index 0000000000..887768e5fe --- /dev/null +++ b/tests/console/cron/tasks/simple_not_ready.php @@ -0,0 +1,13 @@ +<?php + +class phpbb_cron_task_simple_not_ready extends \phpbb\cron\task\base +{ + public function run() + { + } + + public function should_run() + { + return false; + } +} |