18 lines
289 B
PHP
18 lines
289 B
PHP
|
<?php
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* WC Shipping Zone Data Store Interface
|
||
|
*
|
||
|
* Functions that must be defined by shipping zone store classes.
|
||
|
*
|
||
|
* @version 2.7.0
|
||
|
* @category Interface
|
||
|
* @author WooCommerce
|
||
|
*/
|
||
|
interface WC_Shipping_Zone_Data_Store_Interface {
|
||
|
|
||
|
}
|