7f3f9bd6dbd78c3a54b9bbdf374326ed984844c8
[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-2018 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 * @deprecated since 3.1
12 */
13 interface IStackableUserNotificationObject extends IUserNotificationObject {
14 /**
15 * Returns the ID of the related object.
16 *
17 * @return integer
18 */
19 public function getRelatedObjectID();
20 }