mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 20:10:37 -05:00
19 lines
365 B
PHP
19 lines
365 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\Comments;
|
|
|
|
/**
|
|
* Interface ICommentsEventHandler
|
|
*
|
|
* @since 11.0.0
|
|
*/
|
|
interface ICommentsEventHandler {
|
|
/**
|
|
* @param CommentsEvent $event
|
|
* @since 11.0.0
|
|
*/
|
|
public function handle(CommentsEvent $event);
|
|
}
|