File: /var/www/html/ielts-store/wp-content/plugins/automatewoo/includes/Rules/Subscription_Coupons.php
<?php
namespace AutomateWoo\Rules;
defined( 'ABSPATH' ) || exit;
/**
* Subscription_Coupons rule class.
*
* @since 4.5.0
* @package AutomateWoo\Rules
*/
class Subscription_Coupons extends Order_Coupons {
/**
* Data item for the rule.
*
* @var string
*/
public $data_item = 'subscription';
/**
* Init the rule.
*/
public function init() {
parent::init();
$this->title = __( 'Subscription - Coupons', 'automatewoo' );
}
}