BeforeSabrePubliclyLoadedEvent.php 377 B

123456789101112131415
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP;
  7. /**
  8. * Dispatched before Sabre is loaded when accessing public webdav endpoints
  9. * This can be used to inject a Sabre plugin for example
  10. *
  11. * @since 26.0.0
  12. */
  13. class BeforeSabrePubliclyLoadedEvent extends SabrePluginEvent {
  14. }