2 declare(strict_types=1);
3 namespace wcf\system\user\notification\object\type;
4 use wcf\data\user\trophy\UserTrophy;
5 use wcf\data\user\trophy\UserTrophyList;
6 use wcf\system\user\notification\object\UserTrophyNotificationObject;
9 * Represents a user trophy notification object type.
11 * @author Joshua Ruesweg
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
16 class UserTrophyNotificationObjectType extends AbstractUserNotificationObjectType {
20 protected static $decoratorClassName = UserTrophyNotificationObject::class;
25 protected static $objectClassName = UserTrophy::class;
30 protected static $objectListClassName = UserTrophyList::class;