woocommerce/includes/api/class-wc-rest-order-notes-c...

28 lines
493 B
PHP
Raw Normal View History

2016-02-17 19:29:09 +00:00
<?php
/**
* REST API Order Notes controller
*
* Handles requests to the /orders/<order_id>/notes endpoint.
*
2018-03-06 18:04:58 +00:00
* @package WooCommerce/API
* @since 2.6.0
2016-02-17 19:29:09 +00:00
*/
2018-03-06 18:04:58 +00:00
defined( 'ABSPATH' ) || exit;
2016-02-17 19:29:09 +00:00
/**
* REST API Order Notes controller class.
*
* @package WooCommerce/API
2018-05-17 10:44:46 +00:00
* @extends WC_REST_Order_Notes_V2_Controller
2016-02-17 19:29:09 +00:00
*/
2018-05-17 10:44:46 +00:00
class WC_REST_Order_Notes_Controller extends WC_REST_Order_Notes_V2_Controller {
2016-02-17 19:29:09 +00:00
/**
* Endpoint namespace.
*
* @var string
*/
2018-05-17 10:44:46 +00:00
protected $namespace = 'wc/v3';
2016-02-17 19:29:09 +00:00
}