ae6f111b97f61b9b9b6a544d99a3313757bed6da
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3
4 /**
5 * Default interface for comment user notification object types.
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\Type
11 */
12 interface ICommentUserNotificationObjectType {
13 /**
14 * Returns owner id of comment context.
15 *
16 * @param integer $objectID
17 * @return integer
18 */
19 public function getOwnerID($objectID);
20 }