d51a5e3724648481978c150abc71a46a9e807c67
[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-2016 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package WoltLabSuite\Core\System\User\Notification\Object
11 */
12 interface IStackableUserNotificationObject extends IUserNotificationObject {
13 /**
14 * Returns the ID of the related object.
15 *
16 * @return integer
17 */
18 public function getRelatedObjectID();
19 }