Merge branch '3.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / box / content / BoxContentEditor.class.php
CommitLineData
2f273839
MW
1<?php
2namespace wcf\data\box\content;
3use wcf\data\DatabaseObjectEditor;
4
5/**
6 * Provides functions to edit box content.
7 *
8 * @author Marcel Werk
c839bd49 9 * @copyright 2001-2018 WoltLab GmbH
2f273839
MW
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Box\Content
12 * @since 3.0
13 *
01d8af08
MS
14 * @method static BoxContent create(array $parameters = [])
15 * @method BoxContent getDecoratedObject()
16 * @mixin BoxContent
2f273839
MW
17 */
18class BoxContentEditor extends DatabaseObjectEditor {
19 /**
20 * @inheritDoc
21 */
22 protected static $baseClass = BoxContent::class;
23}