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

39 lines
565 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 WC_REST_Controller
*/
class WC_REST_Reports_Controller extends WC_REST_Controller {
/**
* Route base.
*
* @var string
*/
protected $base = 'reports';
/**
* Register the routes for coupons.
*/
public function register_routes() {
}
}