woocommerce/includes/api/class-wc-rest-reports-contr...

32 lines
509 B
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Reports controller
*
* Handles requests to the reports endpoint.
*
* @author WooThemes
* @category API
* @package WooCommerce/API
* @since 2.6.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* REST API Reports controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Reports_V1_Controller
2016-02-17 19:29:09 +00:00
*/
class WC_REST_Reports_Controller extends WC_REST_Reports_V1_Controller {
2016-02-17 19:29:09 +00:00
/**
* Endpoint namespace.
*
* @var string
*/
2017-02-09 17:06:13 +00:00
protected $namespace = 'wc/v2';
2016-02-17 19:29:09 +00:00
}