woocommerce/includes/api/class-wc-rest-customer-down...

28 lines
529 B
PHP
Raw Normal View History

<?php
/**
* REST API Customer Downloads controller
*
* Handles requests to the /customers/<customer_id>/downloads endpoint.
*
2018-03-06 18:04:58 +00:00
* @package WooCommerce/API
* @since 2.6.0
*/
2018-03-06 18:04:58 +00:00
defined( 'ABSPATH' ) || exit;
/**
* REST API Customers controller class.
*
* @package WooCommerce/API
2018-05-17 10:44:46 +00:00
* @extends WC_REST_Customer_Downloads_V2_Controller
*/
2018-05-17 10:44:46 +00:00
class WC_REST_Customer_Downloads_Controller extends WC_REST_Customer_Downloads_V2_Controller {
/**
* Endpoint namespace.
*
* @var string
*/
2018-05-17 10:44:46 +00:00
protected $namespace = 'wc/v3';
}