6f9cc3f46d4d852d6e9af8b4db3bd4faac799ea3
[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-2016 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 }