aboutsummaryrefslogtreecommitdiffstats
path: root/tests/console/cron/tasks/simple_not_runnable.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/console/cron/tasks/simple_not_runnable.php')
-rw-r--r--tests/console/cron/tasks/simple_not_runnable.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/console/cron/tasks/simple_not_runnable.php b/tests/console/cron/tasks/simple_not_runnable.php
deleted file mode 100644
index 4951b5b4b9..0000000000
--- a/tests/console/cron/tasks/simple_not_runnable.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-class phpbb_cron_task_core_simple_not_runnable extends \phpbb\cron\task\base
-{
- public function get_name()
- {
- return get_class($this);
- }
-
- public function run()
- {
- }
-
- public function is_runnable()
- {
- return false;
- }
-}