9055ad57db5c07e03e724b38cf4bd448de9803c3
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3
4 /**
5 * Represents a comment response notification object type.
6 *
7 * @author Alexander Ebert
8 * @copyright 2001-2016 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage system.user.notification.object.type
12 * @category Community Framework
13 */
14 class UserProfileCommentResponseUserNotificationObjectType extends AbstractUserNotificationObjectType {
15 /**
16 * @inheritDoc
17 */
18 protected static $decoratorClassName = 'wcf\system\user\notification\object\CommentResponseUserNotificationObject';
19
20 /**
21 * @inheritDoc
22 */
23 protected static $objectClassName = 'wcf\data\comment\response\CommentResponse';
24
25 /**
26 * @inheritDoc
27 */
28 protected static $objectListClassName = 'wcf\data\comment\response\CommentResponseList';
29 }