mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-11 22:08:54 +00:00
13 lines
173 B
PHP
13 lines
173 B
PHP
<?php
|
|
|
|
class phpbb_cron_task_testmod_simple_not_runnable extends phpbb_cron_task_base
|
|
{
|
|
public function run()
|
|
{
|
|
}
|
|
|
|
public function is_runnable()
|
|
{
|
|
return false;
|
|
}
|
|
}
|