woocommerce/includes/rest-api/Controllers/Version3/class-wc-rest-product-attri...

28 lines
553 B
PHP
Raw Normal View History

<?php
/**
* REST API Product Attributes controller
*
* Handles requests to the products/attributes endpoint.
*
2019-06-21 09:40:39 +00:00
* @package Automattic/WooCommerce/RestApi
* @since 2.6.0
*/
defined( 'ABSPATH' ) || exit;
/**
* REST API Product Attributes controller class.
*
2019-06-21 09:40:39 +00:00
* @package Automattic/WooCommerce/RestApi
* @extends WC_REST_Product_Attributes_V2_Controller
*/
class WC_REST_Product_Attributes_Controller extends WC_REST_Product_Attributes_V2_Controller {
/**
* Endpoint namespace.
*
* @var string
*/
protected $namespace = 'wc/v3';
}