Merge branch '3.0'
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / files / lib / data / conversation / message / ConversationMessageEditor.class.php
CommitLineData
9544b6b4
MW
1<?php
2namespace wcf\data\conversation\message;
3use wcf\data\DatabaseObjectEditor;
4
5/**
6 * Extends the message object with functions to create, update and delete messages.
61f754e0 7 *
9544b6b4 8 * @author Marcel Werk
ca7ac0d3 9 * @copyright 2001-2018 WoltLab GmbH
9544b6b4 10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
c032049e 11 * @package WoltLabSuite\Core\Data\Conversation\Message
c78f419d 12 *
518a3a39
MS
13 * @method static ConversationMessage create(array $parameters = [])
14 * @method ConversationMessage getDecoratedObject()
15 * @mixin ConversationMessage
9544b6b4
MW
16 */
17class ConversationMessageEditor extends DatabaseObjectEditor {
18 /**
c78f419d 19 * @inheritDoc
9544b6b4 20 */
c78f419d 21 protected static $baseClass = ConversationMessage::class;
9544b6b4 22}