aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cron/task2/testmod/simple_not_runnable.php
blob: 54869fa1ccc8ecc903c51404f43494994ed0a192 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class phpbb_cron_task_testmod_simple_not_runnable extends phpbb_cron_task_base
{
	public function run()
	{
	}

	public function is_runnable()
	{
		return false;
	}
}