7eaa0f7500318bc0cf5d99abd7a1677abaf9c4b3
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\comment\response\CommentResponse;
4 use wcf\data\comment\response\CommentResponseList;
5 use wcf\system\user\notification\object\CommentResponseUserNotificationObject;
6
7 /**
8 * User notification object type implementation for moderation queue comment responses.
9 *
10 * @author Mathias Schmidt
11 * @copyright 2001-2016 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package com.woltlab.wcf
14 * @subpackage system.user.notification.object.type
15 * @category Community Framework
16 * @since 2.2
17 */
18 class ModerationQueueCommentResponseUserNotificationObjectType extends AbstractUserNotificationObjectType implements IMultiRecipientCommentUserNotificationObjectType {
19 use TMultiRecipientModerationQueueCommentUserNotificationObjectType;
20
21 /**
22 * @inheritDoc
23 */
24 protected static $decoratorClassName = CommentResponseUserNotificationObject::class;
25
26 /**
27 * @inheritDoc
28 */
29 protected static $objectClassName = CommentResponse::class;
30
31 /**
32 * @inheritDoc
33 */
34 protected static $objectListClassName = CommentResponseList::class;
35 }