2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\article\Article;
4 use wcf\data\article\ArticleList;
5 use wcf\system\user\notification\object\ArticleUserNotificationObject;
8 * Represents a article as a notification object type.
10 * @author Joshua Ruesweg
11 * @copyright 2001-2018 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
15 class ArticleUserNotificationObjectType extends AbstractUserNotificationObjectType {
19 protected static $decoratorClassName = ArticleUserNotificationObject::class;
24 protected static $objectClassName = Article::class;
29 protected static $objectListClassName = ArticleList::class;