Added missing interface.

This commit is contained in:
Peter Fabian 2018-09-17 20:35:23 +02:00
parent aa4035adb9
commit 405703c17a
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
<?php
/**
* Reports Data Store Interface
*
* @version 3.5.0
* @package WooCommerce/Interface
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* WooCommerce Reports data store interface.
*
*/
interface WC_Admin_Reports_Data_Store_Interface {
/**
* Get the data based on args.
*
* @param array $args Query parameters.
* @return stdClass|WP_Error
*/
public function get_data( $args );
}