Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / user / activity / event / UserActivityEventEditor.class.php
CommitLineData
320f4a6d 1<?php
a9229942 2
320f4a6d 3namespace wcf\data\user\activity\event;
a9229942 4
320f4a6d
MW
5use wcf\data\DatabaseObjectEditor;
6
7/**
8 * Provides functions to edit user activity events.
a9229942
TD
9 *
10 * @author Alexander Ebert
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
13 * @package WoltLabSuite\Core\Data\User\Activity\Event
14 *
15 * @method static UserActivityEvent create(array $parameters = [])
16 * @method UserActivityEvent getDecoratedObject()
17 * @mixin UserActivityEvent
320f4a6d 18 */
a9229942
TD
19class UserActivityEventEditor extends DatabaseObjectEditor
20{
21 /**
22 * @inheritDoc
23 */
24 protected static $baseClass = UserActivityEvent::class;
320f4a6d 25}