196ebdabdb10dcd8acb4c5ef100f0afe4844a689
[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-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 LikeUserNotificationObjectType extends AbstractUserNotificationObjectType {
16 /**
17 * @inheritDoc
18 */
19 protected static $decoratorClassName = LikeUserNotificationObject::class;
20
21 /**
22 * @inheritDoc
23 */
24 protected static $objectClassName = Like::class;
25
26 /**
27 * @inheritDoc
28 */
29 protected static $objectListClassName = LikeList::class;
30 }