2018-09-26 10:25:18 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-09-26 10:25:18 -04:00
|
|
|
*/
|
2025-03-03 05:38:39 -05:00
|
|
|
|
2018-09-26 10:25:18 -04:00
|
|
|
namespace OCP\Authentication\TwoFactorAuth;
|
|
|
|
|
|
2025-03-03 05:38:39 -05:00
|
|
|
use OCP\Template\ITemplate;
|
2018-09-26 10:25:18 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface IPersonalProviderSettings
|
|
|
|
|
*
|
|
|
|
|
* @since 15.0.0
|
|
|
|
|
*/
|
|
|
|
|
interface IPersonalProviderSettings {
|
|
|
|
|
/**
|
|
|
|
|
* @since 15.0.0
|
2025-03-03 05:38:39 -05:00
|
|
|
* @since 32.0.0 Broader return type ITemplate instead of \OCP\Template
|
2018-09-26 10:25:18 -04:00
|
|
|
*/
|
2025-03-03 05:38:39 -05:00
|
|
|
public function getBody(): ITemplate;
|
2018-09-26 10:25:18 -04:00
|
|
|
}
|