e1a9430cd4cf609a611c651cf31456f51fa745ee
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\event;
3 use wcf\data\DatabaseObjectDecorator;
4
5 /**
6 * Provides default a implementation for user notification events.
7 *
8 * @author Marcel Werk, Oliver Kliebisch
9 * @copyright 2001-2011 WoltLab GmbH, Oliver Kliebisch
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf.notification
12 * @subpackage system.user.notification.event
13 * @category Community Framework
14 */
15 abstract class AbstractUserNotificationEvent extends DatabaseObjectDecorator implements IUserNotificationEvent {
16 /**
17 * @see wcf\data\DatabaseObjectDecorator::$baseClass
18 */
19 protected static $baseClass = 'wcf\data\user\notification\event\UserNotificationEvent';
20 }