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

class phpbb_cron_task_simple extends \phpbb\cron\task\base
{
	public function get_name()
	{
		return get_class($this);
	}

	public function run()
	{
		global $cron_num_exec;
		$cron_num_exec++;
	}
}