Unify the terms 'Staff' and 'Team'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / box / content / BoxContentEditor.class.php
... / ...
CommitLineData
1<?php
2
3namespace wcf\data\box\content;
4
5use 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 */
19class BoxContentEditor extends DatabaseObjectEditor
20{
21 /**
22 * @inheritDoc
23 */
24 protected static $baseClass = BoxContent::class;
25}