4dc91786d62f6aadc8374778a91b145ff33d5a68
[GitHub/WoltLab/WCF.git] /
1 <?php
2 declare(strict_types=1);
3 namespace wcf\system\user\notification\object\type;
4 use wcf\data\comment\Comment;
5 use wcf\data\comment\CommentList;
6 use wcf\system\user\notification\object\CommentUserNotificationObject;
7
8 /**
9 * User notification object type implementation for moderation queue comments.
10 *
11 * @author Mathias Schmidt
12 * @copyright 2001-2018 WoltLab GmbH
13 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
14 * @package WoltLabSuite\Core\System\User\Notification\Object\Type
15 * @since 3.0
16 */
17 class ModerationQueueCommentUserNotificationObjectType extends AbstractUserNotificationObjectType implements IMultiRecipientCommentUserNotificationObjectType {
18 use TMultiRecipientModerationQueueCommentUserNotificationObjectType;
19
20 /**
21 * @inheritDoc
22 */
23 protected static $decoratorClassName = CommentUserNotificationObject::class;
24
25 /**
26 * @inheritDoc
27 */
28 protected static $objectClassName = Comment::class;
29
30 /**
31 * @inheritDoc
32 */
33 protected static $objectListClassName = CommentList::class;
34 }