File "RouteInterface.php"

Full Path: /home/warrior1/public_html/plugins/woocommerce/packages/woocommerce-blocks/src/StoreApi/Routes/RouteInterface.php
File size: 336 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace Automattic\WooCommerce\StoreApi\Routes;

/**
 * RouteInterface.
 */
interface RouteInterface {
	/**
	 * 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();
}