a48a81bc9dcc739bf8ebc54cb9c57834aa5044ea
[GitHub/WoltLab/WCF.git] /
1 <?php
2 declare(strict_types=1);
3 namespace wcf\system\user\notification\object;
4
5 /**
6 * This interface should be implemented by every object which supports stackable notifications.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2018 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\System\User\Notification\Object
12 * @deprecated since 3.1
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 }