* SPDX-License-Identifier: AGPL-3.0-or-later */ namespace KTXF\Chrono\Event; use KTXF\Json\JsonSerializableCollection; class EventNotificationCollection extends JsonSerializableCollection { public function __construct(array $data = []) { parent::__construct($data, EventNotificationObject::class, 'string'); } }