91a39396ebfcaa10e7df74fc0304775cb43350b4
[GitHub/WoltLab/WCF.git] /
1 <?php
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;
6
7 /**
8 * This interface defines the basic methods every notification object type should implement.
9 *
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
14 */
15 interface IUserNotificationObjectType extends IDatabaseObjectProcessor {
16 /**
17 * Returns notification objects by their IDs.
18 *
19 * @param integer[] $objectIDs
20 * @return IUserNotificationObject[]
21 */
22 public function getObjectsByIDs(array $objectIDs);
23 }