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