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