Merge pull request #3158 from Krymonota/fix-veoh-privacy-policy-link-text
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / data / bbcode / attribute / BBCodeAttributeAction.class.php
1 <?php
2 namespace wcf\data\bbcode\attribute;
3 use wcf\data\AbstractDatabaseObjectAction;
4
5 /**
6 * Executes bbcode attribute-related actions.
7 *
8 * @author Alexander Ebert
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\Bbcode\Attribute
12 *
13 * @method BBCodeAttribute create()
14 * @method BBCodeAttributeEditor[] getObjects()
15 * @method BBCodeAttributeEditor getSingleObject()
16 */
17 class BBCodeAttributeAction extends AbstractDatabaseObjectAction {
18 /**
19 * @inheritDoc
20 */
21 protected $className = BBCodeAttributeEditor::class;
22 }