aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cron/task/testmod/dummy_task.php
blob: 5941157589e7e9d8928716153ba880440c2d4668 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
*
* @package testing
* @copyright (c) 2010 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

class phpbb_cron_task_testmod_dummy_task extends phpbb_cron_task_base
{
	public static $was_run = 0;

	public function run()
	{
		self::$was_run++;
	}

	public function should_run()
	{
		return true;
	}
}