1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00
php-phpbb/tests/cron/tasks/simple_not_runnable.php
2013-09-16 00:25:27 +02:00

19 lines
233 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;
}
}