aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cron/tasks/simple_ready.php
blob: 8aa050740623c22f175dfef93a4a432718d7f36d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class phpbb_cron_task_core_simple_ready extends phpbb_cron_task_base
{
	public function get_name()
	{
		return get_class($this);
	}

	public function run()
	{
	}
}