c54ef5968b936e5125cf6d886b2b9e6cf85e2516
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\IDatabaseObjectProcessor;
4 use wcf\system\user\notification\object\IUserNotificationObject;
5
6 /**
7 * This interface defines the basic methods every notification object type should implement.
8 *
9 * @author Marcel Werk, Oliver Kliebisch
10 * @copyright 2001-2015 WoltLab GmbH, Oliver Kliebisch
11 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
12 * @package com.woltlab.wcf
13 * @subpackage system.user.notification.object.type
14 * @category Community Framework
15 */
16 interface IUserNotificationObjectType extends IDatabaseObjectProcessor {
17 /**
18 * Gets notification objects by their IDs.
19 *
20 * @param integer[] $objectIDs
21 * @return IUserNotificationObject[]
22 */
23 public function getObjectsByIDs(array $objectIDs);
24 }