mirror of
https://github.com/nextcloud/server.git
synced 2024-11-14 12:26:49 +00:00
9713dd3fa9
Signed-off-by: Julius Härtl <jus@bitgrid.net>
22 lines
552 B
PHP
22 lines
552 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
|
|
* @deprecated 30.0.0 Register a listener for the CommentsEvent through the IEventDispatcher
|
|
*/
|
|
interface ICommentsEventHandler {
|
|
/**
|
|
* @param CommentsEvent $event
|
|
* @since 11.0.0
|
|
* @deprecated 30.0.0 Register a listener for the CommentsEvent through the IEventDispatcher
|
|
*/
|
|
public function handle(CommentsEvent $event);
|
|
}
|