mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 12:58:52 +00:00
Instead a separate cron provider supplies the manager with tasks from the extension finder. PHPBB3-10323
13 lines
170 B
PHP
13 lines
170 B
PHP
<?php
|
|
|
|
class phpbb_cron_task_core_simple_not_runnable extends phpbb_cron_task_base
|
|
{
|
|
public function run()
|
|
{
|
|
}
|
|
|
|
public function is_runnable()
|
|
{
|
|
return false;
|
|
}
|
|
}
|