edc0cebca8b9d36f9efb92931ec411f4d1483f2a
[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-2012 WoltLab GmbH
9 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
10 * @package com.woltlab.wcf.comment
11 * @subpackage system.user.notification.object.type
12 * @category Community Framework
13 */
14 interface ICommentUserNotificationObjectType {
15 /**
16 * Returns owner id of comment context.
17 *
18 * @param integer $objectID
19 * @return integer
20 */
21 public function getOwnerID($objectID);
22 }