mirror of
https://github.com/nextcloud/server.git
synced 2025-04-28 11:03:00 +00:00
12 lines
251 B
PHP
12 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';
|
|
}
|
|
}
|