aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cron/tasks/simple_not_runnable.php
blob: 56d484eacd622c48e5723558086e51c0366a0ef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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;
	}
}