documentation fixes in wcf/data
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / option / category / OptionCategoryEditor.class.php
1 <?php
2 namespace wcf\data\option\category;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Provides functions to edit option categories.
7 *
8 * @author Alexander Ebert
9 * @copyright 2001-2011 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data.option.category
13 * @category Community Framework
14 */
15 class OptionCategoryEditor extends DatabaseObjectEditor {
16 /**
17 * @see wcf\data\DatabaseObjectDecorator::$baseClass
18 */
19 protected static $baseClass = 'wcf\data\option\category\OptionCategory';
20 }