f07c7d7c5f7f7b7c87371ec4e7dff74b9abd8dd1
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\type;
3 use wcf\data\DatabaseObjectDecorator;
4
5 /**
6 * Provides default a implementation for user notification types.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2011 WoltLab GmbH
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.type
13 * @category Community Framework
14 */
15 abstract class AbstractUserNotificationType extends DatabaseObjectDecorator implements IUserNotificationType {
16 /**
17 * @see wcf\data\DatabaseObjectDecorator::$baseClass
18 */
19 protected static $baseClass = 'wcf\data\user\notification\type\UserNotificationType';
20 }