aboutsummaryrefslogtreecommitdiffstats
path: root/tests/console/cron/tasks/simple_not_runnable.php
blob: 4951b5b4b9df639c87a3f3c334ca5c5c5a316b35 (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;
	}
}