2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\comment\Comment;
6 * Default interface for comment user notification object types with notifications
7 * being sent to multiple recipients.
9 * This interface can also be implemented by user notification object types for
10 * comment responses. In this case, there is no distinction between commentResponse
11 * and commentResponseOwner event and only a commentResponse event is fired.
13 * @author Matthias Schmidt
14 * @copyright 2001-2016 WoltLab GmbH
15 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
16 * @package WoltLabSuite\Core\System\User\Notification\Object\Type
19 interface IMultiRecipientCommentUserNotificationObjectType {
21 * Returns the user ids of the notification recipients. If an empty array
22 * is returned, no notifications should be sent.
24 * @param Comment $comment
27 public function getRecipientIDs(Comment $comment);