1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-25 04:23:38 +01:00
php-phpbb/tests/cron/tasks/simple_not_runnable.php

14 lines
170 B
PHP
Raw Normal View History

<?php
class phpbb_cron_task_core_simple_not_runnable extends phpbb_cron_task_base
{
public function run()
{
}
public function is_runnable()
{
return false;
}
}