28 lines
512 B
PHP
28 lines
512 B
PHP
<?php
|
|
/**
|
|
* REST API Reports controller
|
|
*
|
|
* Handles requests to the reports/sales endpoint.
|
|
*
|
|
* @package Automattic/WooCommerce/RestApi
|
|
* @since 2.6.0
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* REST API Report Sales controller class.
|
|
*
|
|
* @package Automattic/WooCommerce/RestApi
|
|
* @extends WC_REST_Report_Sales_V2_Controller
|
|
*/
|
|
class WC_REST_Report_Sales_Controller extends WC_REST_Report_Sales_V2_Controller {
|
|
|
|
/**
|
|
* Endpoint namespace.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $namespace = 'wc/v3';
|
|
}
|