Files
piratepoet/mailpoet/lib/Models/StatisticsWooCommercePurchases.php
Jan Jakes 9f790efbf0 Move plugin files to a subfolder
[MAILPOET-3988]
2022-01-18 15:30:22 +01:00

17 lines
427 B
PHP

<?php
namespace MailPoet\Models;
/**
* @property int $newsletterId
* @property int $subscriberId
* @property int $queueId
* @property int $clickId
* @property int $orderId
* @property string $orderCurrency
* @property float $orderPriceTotal
*/
class StatisticsWooCommercePurchases extends Model {
public static $_table = MP_STATISTICS_WOOCOMMERCE_PURCHASES_TABLE; // phpcs:ignore PSR2.Classes.PropertyDeclaration
}