PluginProbe
Force Refresh / 3.2.1
Force Refresh v3.2.1
3.2.1 3.2.0 3.1.2 3.1.1 3.1.0 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.11.0 2.11.1 2.12.0 All 54 releases
force-refresh / includes / api / interfaces / interface-api-handler.php

interface-api-handler.php in Force Refresh 3.2.1, at includes/api/interfaces/interface-api-handler.php

22 lines 468 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Our API handler interface.
4 *
5 * @package ForceRefresh
6 */
7
8 namespace JordanLeven\Plugins\ForceRefresh\Api\Interfaces;
9
10 interface Api_Handler_Interface {
11
12 /**
13 * Method for
14 *
15 * @param string $route The endpoint route.
16 * @param int $version The endpoint version.
17 *
18 * @return string The formatted ReST endpoint.
19 */
20 public static function get_formatted_rest_endpoint( string $route, int $version ): string;
21 }
22