1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-02 12:34:59 +02:00
php-phpbb/tests/cron/tasks/simple_not_runnable.php
2012-04-09 15:05:28 +02:00

19 lines
232 B
PHP

<?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;
}
}