15 lines
226 B
PHP
15 lines
226 B
PHP
|
<?php
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* WC Customer Download Data Store Interface.
|
||
|
*
|
||
|
* @version 2.7.0
|
||
|
* @category Interface
|
||
|
* @author WooThemes
|
||
|
*/
|
||
|
interface WC_Customer_Download_Data_Store_Interface {
|
||
|
}
|