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