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;
9 * User notification object type implementation for moderation queue comments.
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
17 class ModerationQueueCommentUserNotificationObjectType extends AbstractUserNotificationObjectType implements IMultiRecipientCommentUserNotificationObjectType {
18 use TMultiRecipientModerationQueueCommentUserNotificationObjectType;
23 protected static $decoratorClassName = CommentUserNotificationObject::class;
28 protected static $objectClassName = Comment::class;
33 protected static $objectListClassName = CommentList::class;