StandaloneTemplateResponse.php 642 B

12345678910111213141516171819202122
  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\AppFramework\Http;
  8. /**
  9. * A template response that does not emit the loadAdditionalScripts events.
  10. *
  11. * This is useful for pages that are authenticated but do not yet show the
  12. * full nextcloud UI. Like the 2FA page, or the grant page in the login flow.
  13. *
  14. * @since 16.0.0
  15. * @template S of int
  16. * @template H of array<string, mixed>
  17. * @template-extends TemplateResponse<int, array<string, mixed>>
  18. */
  19. class StandaloneTemplateResponse extends TemplateResponse {
  20. }