aboutsummaryrefslogtreecommitdiffstats
path: root/tests/console/cron/tasks/simple_ready.php
blob: 245d9ba738b2748eba73836745f74d2bbf3fdaa3 (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()
	{
	}
}