3a9cec6c07fd8c99d2e8712ad16cab6b5f9c6b84
[GitHub/WoltLab/WCF.git] /
1 <?php
2 namespace wcf\data\paid\subscription\transaction\log;
3 use wcf\data\DatabaseObjectEditor;
4
5 /**
6 * Provides functions to edit paid subscription transaction log entries.
7 *
8 * @author Marcel Werk
9 * @copyright 2001-2016 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package com.woltlab.wcf
12 * @subpackage data.paid.subscription.transaction.log
13 * @category Community Framework
14 *
15 * @method PaidSubscriptionTransactionLog getDecoratedObject()
16 * @mixin PaidSubscriptionTransactionLog
17 */
18 class PaidSubscriptionTransactionLogEditor extends DatabaseObjectEditor {
19 /**
20 * @inheritDoc
21 */
22 protected static $baseClass = PaidSubscriptionTransactionLog::class;
23 }