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 and has a `commentResponseOwner` event.
9 * This interface is only required, if you use the interface `IMultiRecipientCommentUserNotificationObjectType`.
10 * If you use not this interface, the `commentResponseOwner` event is fired by default.
12 * @author Joshua Ruesweg
13 * @copyright 2001-2019 WoltLab GmbH
14 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
15 * @package WoltLabSuite\Core\System\User\Notification\Object\Type
18 interface IMultiRecipientCommentResponseOwnerUserNotificationObjectType {
20 * Returns the user ids of the comment owner.
22 * @param Comment $comment
25 public function getCommentOwnerID(Comment $comment);