woocommerce/plugins/woocommerce-admin/includes/api/class-wc-admin-rest-reports...

35 lines
603 B
PHP

<?php
/**
* REST API Reports coupons stats controller
*
* Handles requests to the /reports/coupons/stats endpoint.
*
* @package WooCommerce/API
* @since 3.5.0
*/
defined( 'ABSPATH' ) || exit;
/**
* REST API Reports coupons stats controller class.
*
* @package WooCommerce/API
* @extends WC_REST_Reports_Controller
*/
class WC_REST_Reports_Coupons_Stats_Controller extends WC_REST_Reports_Controller {
/**
* Endpoint namespace.
*
* @var string
*/
protected $namespace = 'wc/v3';
/**
* Route base.
*
* @var string
*/
protected $rest_base = 'reports/coupons/stats';
}