1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php /** * Reports Data Store Interface */
namespace Automattic\WooCommerce\Admin\API\Reports;
if ( ! defined( 'ABSPATH' ) ) { exit; }
/** * WooCommerce Reports data store interface. * * @since 3.5.0 */ interface DataStoreInterface {
/** * Get the data based on args. * * @param array $args Query parameters. * @return stdClass|WP_Error */ public function get_data( $args ); }
|