Add @method tags for IEditableObject::create() in DBO classes
[GitHub/WoltLab/com.woltlab.wcf.conversation.git] / files / lib / data / conversation / label / ConversationLabelEditor.class.php
1 <?php
2 namespace wcf\data\conversation\label;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Extends the label object with functions to create, update and delete labels.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2016 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Conversation\Label
12 *
13 * @method static ConversationLabel create(array $parameters = [])
14 * @method ConversationLabel getDecoratedObject()
15 * @mixin ConversationLabel
16 */
17 class ConversationLabelEditor extends DatabaseObjectEditor {
18 /**
19 * @inheritDoc
20 */
21 protected static $baseClass = ConversationLabel::class;
22 }