52a0c3ba7ed383c23eb3be11bda431cfa9a5e9ec
[GitHub/WoltLab/WCF.git] /
1 <?php
2 declare(strict_types=1);
3 namespace wcf\system\user\notification\object\type;
4 use wcf\data\comment\response\CommentResponse;
5 use wcf\data\comment\response\CommentResponseList;
6 use wcf\system\user\notification\object\CommentResponseUserNotificationObject;
7
8 /**
9 * Represents a comment response notification object type.
10 *
11 * @author Alexander Ebert
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 */
16 class UserProfileCommentResponseUserNotificationObjectType 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 }