ICommentsEventHandler.php 365 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OCP\Comments;
  7. /**
  8. * Interface ICommentsEventHandler
  9. *
  10. * @since 11.0.0
  11. */
  12. interface ICommentsEventHandler {
  13. /**
  14. * @param CommentsEvent $event
  15. * @since 11.0.0
  16. */
  17. public function handle(CommentsEvent $event);
  18. }