f9b5d00a5fd719dfea4a7a7f52f6f8d6217a09cf
[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 * Represents a comment notification object type for comment responses on articles.
9 *
10 * @author Joshua Ruesweg
11 * @copyright 2001-2018 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\System\User\Notification\Object\Type
14 * @since 5.2
15 */
16 class ArticleCommentResponseUserNotificationObjectType extends AbstractUserNotificationObjectType {
17 /**
18 * @inheritDoc
19 */
20 protected static $decoratorClassName = CommentResponseUserNotificationObject::class;
21
22 /**
23 * @inheritDoc
24 */
25 protected static $objectClassName = CommentResponse::class;
26
27 /**
28 * @inheritDoc
29 */
30 protected static $objectListClassName = CommentResponseList::class;
31 }