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