/var/www/html_us/wp-content/plugins/woocommerce/src/StoreApi/Routes/RouteInterface.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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();
}