ad1e5dfb7b0517e2291f99512ef90e74f0bb22e7
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3
4 /**
5 * Represents a following user as a notification object type.
6 *
7 * @author Alexander Ebert
8 * @copyright 2001-2015 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 UserFollowUserNotificationObjectType extends AbstractUserNotificationObjectType {
15 /**
16 * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$decoratorClassName
17 */
18 protected static $decoratorClassName = 'wcf\system\user\notification\object\UserFollowUserNotificationObject';
19
20 /**
21 * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$objectClassName
22 */
23 protected static $objectClassName = 'wcf\data\user\follow\UserFollow';
24
25 /**
26 * @see \wcf\system\user\notification\object\type\AbstractUserNotificationObjectType::$objectListClassName
27 */
28 protected static $objectListClassName = 'wcf\data\user\follow\UserFollowList';
29 }