Merge branch '3.0'
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / comment / response / CommentResponseEditor.class.php
1 <?php
2 namespace wcf\data\comment\response;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Provides functions to edit comment responses.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2018 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\Data\Comment\Response
12 *
13 * @method static CommentResponse create(array $parameters = [])
14 * @method CommentResponse getDecoratedObject()
15 * @mixin CommentResponse
16 */
17 class CommentResponseEditor extends DatabaseObjectEditor {
18 /**
19 * @inheritDoc
20 */
21 protected static $baseClass = CommentResponse::class;
22 }