8c3c96324eec80112d4bce19eb89410ce3db51f0
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object;
3
4 /**
5 * This interface should be implemented by every object which supports stackable notifications.
6 *
7 * @author Alexander Ebert
8 * @copyright 2001-2015 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf
11 * @subpackage system.user.notification.object
12 * @category Community Framework
13 */
14 interface IStackableUserNotificationObject extends IUserNotificationObject {
15 /**
16 * Returns the ID of the related object.
17 *
18 * @return integer
19 */
20 public function getRelatedObjectID();
21 }