580b5a878b6495bd05ac42d41e8abe4eb90b9ea0
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\user\trophy\UserTrophy;
4 use wcf\data\user\trophy\UserTrophyList;
5 use wcf\system\user\notification\object\UserTrophyNotificationObject;
6
7 /**
8 * Represents a user trophy notification object type.
9 *
10 * @author Joshua Ruesweg
11 * @copyright 2001-2017 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 */
15 class UserTrophyNotificationObjectType extends AbstractUserNotificationObjectType {
16 /**
17 * @inheritdoc
18 */
19 protected static $decoratorClassName = UserTrophyNotificationObject::class;
20
21 /**
22 * @inheritdoc
23 */
24 protected static $objectClassName = UserTrophy::class;
25
26 /**
27 * @inheritdoc
28 */
29 protected static $objectListClassName = UserTrophyList::class;
30 }