2019-05-10 16:56:07 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* REST API Reports controller
|
|
|
|
*
|
|
|
|
* Handles requests to the reports endpoint.
|
|
|
|
*
|
2019-06-21 09:40:39 +00:00
|
|
|
* @package Automattic/WooCommerce/RestApi
|
2019-05-10 16:56:07 +00:00
|
|
|
* @since 2.6.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* REST API Reports controller class.
|
|
|
|
*
|
2019-06-21 09:40:39 +00:00
|
|
|
* @package Automattic/WooCommerce/RestApi
|
2019-05-10 16:56:07 +00:00
|
|
|
* @extends WC_REST_Reports_V1_Controller
|
|
|
|
*/
|
|
|
|
class WC_REST_Reports_V2_Controller extends WC_REST_Reports_V1_Controller {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoint namespace.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $namespace = 'wc/v2';
|
|
|
|
}
|