2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\user\follow\UserFollow;
4 use wcf\data\user\follow\UserFollowList;
5 use wcf\system\user\notification\object\UserFollowUserNotificationObject;
8 * Represents a following user as a notification object type.
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
17 class UserFollowUserNotificationObjectType extends AbstractUserNotificationObjectType {
21 protected static $decoratorClassName = UserFollowUserNotificationObject::class;
26 protected static $objectClassName = UserFollow::class;
31 protected static $objectListClassName = UserFollowList::class;