1
0

IPersonalProviderSettings.php 423 B

12345678910111213141516171819202122232425
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Authentication\TwoFactorAuth;
  8. use OCP\Template;
  9. /**
  10. * Interface IPersonalProviderSettings
  11. *
  12. * @since 15.0.0
  13. */
  14. interface IPersonalProviderSettings {
  15. /**
  16. * @return Template
  17. *
  18. * @since 15.0.0
  19. */
  20. public function getBody(): Template;
  21. }