Validate the file extensions using lower case
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / like / LikeEditor.class.php
... / ...
CommitLineData
1<?php
2
3namespace wcf\data\like;
4
5use 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 */
18class LikeEditor extends DatabaseObjectEditor
19{
20 /**
21 * @inheritDoc
22 */
23 protected static $baseClass = Like::class;
24}