4d85882d9949ad8c1f284c96f854f50f84a210e6
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\like\Like;
4 use wcf\data\like\LikeList;
5 use wcf\system\user\notification\object\LikeUserNotificationObject;
6
7 /**
8 * User notification object type implementation for likes.
9 *
10 * @author Alexander Ebert
11 * @copyright 2001-2016 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package com.woltlab.wcf
14 * @subpackage system.user.notification.object.type
15 * @category Community Framework
16 */
17 class LikeUserNotificationObjectType extends AbstractUserNotificationObjectType {
18 /**
19 * @inheritDoc
20 */
21 protected static $decoratorClassName = LikeUserNotificationObject::class;
22
23 /**
24 * @inheritDoc
25 */
26 protected static $objectClassName = Like::class;
27
28 /**
29 * @inheritDoc
30 */
31 protected static $objectListClassName = LikeList::class;
32 }