37e29c10f76f63a749e04d4a7e28e471ad81adab
[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-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
13 */
14 interface IUserNotificationObjectType extends IDatabaseObjectProcessor {
15 /**
16 * Returns notification objects by their IDs.
17 *
18 * @param integer[] $objectIDs
19 * @return IUserNotificationObject[]
20 */
21 public function getObjectsByIDs(array $objectIDs);
22 }