Merge branch '3.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / like / LikeEditor.class.php
CommitLineData
00b6f956
MW
1<?php
2namespace wcf\data\like;
3use wcf\data\DatabaseObjectEditor;
4
5/**
6 * Extends the like object with functions to create, update and delete likes.
7 *
8 * @author Marcel Werk
c839bd49 9 * @copyright 2001-2018 WoltLab GmbH
00b6f956 10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
e71525e4 11 * @package WoltLabSuite\Core\Data\Like
4bef7e27 12 *
01d8af08
MS
13 * @method static Like create(array $parameters = [])
14 * @method Like getDecoratedObject()
15 * @mixin Like
00b6f956
MW
16 */
17class LikeEditor extends DatabaseObjectEditor {
18 /**
4bef7e27 19 * @inheritDoc
00b6f956 20 */
4bef7e27 21 protected static $baseClass = Like::class;
00b6f956 22}