• File: ProductCategories.php
  • Full Path: /var/www/trendyshoppers.co.uk/public_html/wp-content/plugins/woocommerce/src/Admin/API/ProductCategories.php
  • Date Modified: 03/03/2026 5:22 AM
  • File size: 458 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
/**
 * REST API Product Categories Controller
 *
 * Handles requests to /products/categories.
 */

namespace Automattic\WooCommerce\Admin\API;

defined( 'ABSPATH' ) || exit;

/**
 * Product categories controller.
 *
 * @internal
 * @extends WC_REST_Product_Categories_Controller
 */
class ProductCategories extends \WC_REST_Product_Categories_Controller {
	/**
	 * Endpoint namespace.
	 *
	 * @var string
	 */
	protected $namespace = 'wc-analytics';
}