f363c6b67da2216af58a33ecf70e259fb3782ea7
[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-2017 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 }