2 namespace wcf\system\user\notification\object\type;
3 use wcf\data\IDatabaseObjectProcessor;
4 use wcf\system\user\notification\object\IUserNotificationObject;
7 * This interface defines the basic methods every notification object type should implement.
9 * @author Marcel Werk, Oliver Kliebisch
10 * @copyright 2001-2016 WoltLab GmbH, Oliver Kliebisch
11 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
12 * @package WoltLabSuite\Core\System\User\Notification\Object\Type
14 interface IUserNotificationObjectType extends IDatabaseObjectProcessor {
16 * Returns notification objects by their IDs.
18 * @param integer[] $objectIDs
19 * @return IUserNotificationObject[]
21 public function getObjectsByIDs(array $objectIDs);