6bd1a83518e4c187d940340d0bad00dded2d5b57
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / like / LikeEditor.class.php
1 <?php
2
3 namespace wcf\data\like;
4
5 use wcf\data\DatabaseObjectEditor;
6
7 /**
8 * Extends the like object with functions to create, update and delete likes.
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 *
14 * @method static Like create(array $parameters = [])
15 * @method Like getDecoratedObject()
16 * @mixin Like
17 */
18 class LikeEditor extends DatabaseObjectEditor
19 {
20 /**
21 * @inheritDoc
22 */
23 protected static $baseClass = Like::class;
24 }