aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Background/WebCron.php
blob: 1e3e5ca5f1731e72a4c0579d762a03259b78cdf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/**
 * SPDX-FileCopyrightText: 2015 Christian Kampka <christian@kampka.net>
 * SPDX-License-Identifier: MIT
 */
namespace OC\Core\Command\Background;

class WebCron extends Base {
	protected function getMode(): string {
		return 'webcron';
	}
}