aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command/Background/Ajax.php
blob: 16486649bf03925e342310bd34c41b5077124986 (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 Ajax extends Base {
	protected function getMode(): string {
		return 'ajax';
	}
}