mirror of
https://github.com/nextcloud/server.git
synced 2026-06-29 12:24:50 +02:00
1df96b0417
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
13 lines
251 B
PHP
13 lines
251 B
PHP
<?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';
|
|
}
|
|
}
|