1
0

ILoginSetupProvider.php 375 B

1234567891011121314151617181920212223
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2019 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. * @since 17.0.0
  11. */
  12. interface ILoginSetupProvider {
  13. /**
  14. * @return Template
  15. *
  16. * @since 17.0.0
  17. */
  18. public function getBody(): Template;
  19. }