12e79f6681c6e6260d5e785854a8a9eedde16b29
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / box / content / BoxContentEditor.class.php
1 <?php
2
3 namespace wcf\data\box\content;
4
5 use wcf\data\DatabaseObjectEditor;
6
7 /**
8 * Provides functions to edit box content.
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>
13 * @since 3.0
14 *
15 * @method static BoxContent create(array $parameters = [])
16 * @method BoxContent getDecoratedObject()
17 * @mixin BoxContent
18 */
19 class BoxContentEditor extends DatabaseObjectEditor
20 {
21 /**
22 * @inheritDoc
23 */
24 protected static $baseClass = BoxContent::class;
25 }