File "class-wc-coupon-data-store-interface.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/woocommerce/includes/interfaces/class-wc-coupon-data-store-interface.php
File
size: 332 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
interface WC_Coupon_Data_Store_Interface
{
public function increase_usage_count(&$coupon, $used_by = '');
public function decrease_usage_count(&$coupon, $used_by = '');
public function get_usage_by_user_id(&$coupon, $user_id);
public function get_code_by_id($id);
public function get_ids_by_code($code);
}