Merge pull request #5989 from WoltLab/wsc-rpc-api-const
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / box / content / BoxContentEditor.class.php
CommitLineData
2f273839 1<?php
a9229942 2
2f273839 3namespace wcf\data\box\content;
a9229942 4
2f273839
MW
5use wcf\data\DatabaseObjectEditor;
6
7/**
8 * Provides functions to edit box content.
a9229942
TD
9 *
10 * @author Marcel Werk
11 * @copyright 2001-2019 WoltLab GmbH
12 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
a9229942
TD
13 * @since 3.0
14 *
15 * @method static BoxContent create(array $parameters = [])
16 * @method BoxContent getDecoratedObject()
17 * @mixin BoxContent
2f273839 18 */
a9229942
TD
19class BoxContentEditor extends DatabaseObjectEditor
20{
21 /**
22 * @inheritDoc
23 */
24 protected static $baseClass = BoxContent::class;
2f273839 25}