2016-05-09 04:02:07 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-05-09 04:02:07 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCP\Comments;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Interface ICommentsEventHandler
|
|
|
|
|
*
|
2016-11-15 12:51:52 -05:00
|
|
|
* @since 11.0.0
|
2024-06-18 08:11:32 -04:00
|
|
|
* @deprecated 30.0.0 Register a listener for the CommentsEvent through the IEventDispatcher
|
2016-05-09 04:02:07 -04:00
|
|
|
*/
|
|
|
|
|
interface ICommentsEventHandler {
|
|
|
|
|
/**
|
|
|
|
|
* @param CommentsEvent $event
|
2016-11-15 12:51:52 -05:00
|
|
|
* @since 11.0.0
|
2024-06-18 08:11:32 -04:00
|
|
|
* @deprecated 30.0.0 Register a listener for the CommentsEvent through the IEventDispatcher
|
2016-05-09 04:02:07 -04:00
|
|
|
*/
|
|
|
|
|
public function handle(CommentsEvent $event);
|
|
|
|
|
}
|