mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/12597] Command for executing all available cron tasks
Command cron:execute-all executes all available cron tasks. Test files in tests/console/cron folder PHPBB3-12597
This commit is contained in:
13
tests/console/cron/tasks/simple_ready.php
Normal file
13
tests/console/cron/tasks/simple_ready.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
class phpbb_cron_task_core_simple_ready extends \phpbb\cron\task\base
|
||||
{
|
||||
public function get_name()
|
||||
{
|
||||
return get_class($this);
|
||||
}
|
||||
|
||||
public function run()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user