3890bc1009c8b88fb087f1bb31bf063436f48198
[GitHub/WoltLab/woltlab.github.io.git] / snippets / tutorial / tutorial-series / part-1 / files / lib / data / person / PersonEditor.class.php
1 <?php
2 namespace wcf\data\person;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Provides functions to edit people.
7 *
8 * @author Matthias Schmidt
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Person
12 *
13 * @method static Person create(array $parameters = [])
14 * @method Person getDecoratedObject()
15 * @mixin Person
16 */
17 class PersonEditor extends DatabaseObjectEditor {
18 /**
19 * @inheritDoc
20 */
21 protected static $baseClass = Person::class;
22 }