FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
woocommerce
/
src
/
Admin
/
API
Edit File: ProductCategories.php
<?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'; }
Save
Back