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