aboutsummaryrefslogtreecommitdiffstats
path: root/tests/console/cron/tasks/simple_ready.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-06-06 19:43:09 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-06-06 19:43:09 +0200
commit69e50dffaed944c68bbfa88bf282dc765f580791 (patch)
treeb84921c73bf8762048bb474d8df91ba37bdd7c2e /tests/console/cron/tasks/simple_ready.php
parent1f78ab536b280cabb782a0178c6260e3b3db2da3 (diff)
parent088ce641be6528bc8705b630569c98a082455aa4 (diff)
downloadforums-69e50dffaed944c68bbfa88bf282dc765f580791.tar
forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar.gz
forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar.bz2
forums-69e50dffaed944c68bbfa88bf282dc765f580791.tar.xz
forums-69e50dffaed944c68bbfa88bf282dc765f580791.zip
Merge pull request #2509 from Stephannos/ticket/12602
[ticket/12602] Add command to print the cron list * Stephannos/ticket/12602: [ticket/12602] Fix language key removal. [ticket/12602] Rectify language keys. [ticket/12602] Fix test mistake. [ticket/12602] Fix language var mistakes. [ticket/12602] Add types, change description of cron:list. [ticket/12602] Fix internationalisation of cron_list.php [ticket/12602] Fix spaces issues. [ticket/12602] Coding style correction. [ticket/12602] Fix coding style mistakes. [ticket/12602] Headers updated. [ticket/12602] Changes to respect coding style and to factorize code. [ticket/12602] Cleanup tests [ticket/12602] Add function get_tasks. [ticket/12602] Correction of the output message for the cron list [ticket/12602] Add files to print the cron list and test files.
Diffstat (limited to 'tests/console/cron/tasks/simple_ready.php')
-rw-r--r--tests/console/cron/tasks/simple_ready.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/console/cron/tasks/simple_ready.php b/tests/console/cron/tasks/simple_ready.php
new file mode 100644
index 0000000000..47970e104f
--- /dev/null
+++ b/tests/console/cron/tasks/simple_ready.php
@@ -0,0 +1,8 @@
+<?php
+
+class phpbb_cron_task_simple_ready extends \phpbb\cron\task\base
+{
+ public function run()
+ {
+ }
+}