automatewoo/includes/Rules/Subscription_Coupon_Count.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

28 lines
449 B
PHP

<?php
namespace AutomateWoo\Rules;
defined( 'ABSPATH' ) || exit;
/**
* Class Subscription_Coupon_Count
*
* @since 4.5.0
* @package AutomateWoo\Rules
*/
class Subscription_Coupon_Count extends Order_Coupon_Count {
/**
* Data item for the rule.
*
* @var string
*/
public $data_item = 'subscription';
/**
* Init the rule.
*/
public function init() {
$this->title = __( 'Subscription - Coupon Count', 'automatewoo' );
}
}