woocommerce/includes/api/wc-rest-reports-controller.php

46 lines
655 B
PHP

<?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 WP_REST_Controller
*/
class WC_REST_Reports_Controller extends WP_REST_Controller {
/**
* Endpoint namespace.
*
* @var string
*/
public $namespace = 'wc/v1';
/**
* Route base.
*
* @var string
*/
protected $rest_base = 'reports';
/**
* Register the routes for coupons.
*/
public function register_routes() {
}
}