diff options
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; + } +} |