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