/var/www/html_uk/wp-content/plugins/automatewoo/includes/Rules/Subscription_Items.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace AutomateWoo\Rules;

defined'ABSPATH' ) || exit;

/**
 * @class Subscription_Items
 */
class Subscription_Items extends Order_Items {

    
/** @var string */
    
public $data_item 'subscription';

    
/**
     * @return void
     */
    
public function init() {
        
parent::init();

        
$this->title __'Subscription - Items''automatewoo' );
    }
}