Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
woocommerce
/
packages
/
woocommerce-blocks
/
src
/
StoreApi
/
Routes
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Automattic\WooCommerce\Blocks\StoreApi\Routes; /** * RouteInterface. * * @internal This API is used internally by Blocks--it is still in flux and may be subject to revisions. */ interface RouteInterface { /** * Get the namespace for this route. * * @return string */ public function get_namespace(); /** * Get the path of this REST route. * * @return string */ public function get_path(); /** * Get arguments for this REST route. * * @return array An array of endpoints. */ public function get_args(); }