PluginProbe
Pods – Custom Content Types and Fields / 3.0.10.5
Pods – Custom Content Types and Fields v3.0.10.5
2.7.31.4 2.8.23.5 2.9.19.5 3.0.10.5 3.1.4.3 3.2.8.4 3.3.9.2 2.8.23.4 2.9.19.4 3.0.10.4 3.1.4.2 3.2.8.3 3.3.9.1 trunk 1.14.8 2.7.31.3 2.8.23.3 2.9.19.3 3.0.10.3 3.1.4.1 3.2.0 3.2.1 3.2.1.1 3.2.2 3.2.4 All 42 releases
pods / src / Pods / REST / Interfaces / Swagger / Provider_Interface.php
Provider_Interface.php
29 lines 736 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Pods\REST\Interfaces\Swagger;
4
5 /**
6 * Provider interface.
7 *
8 * @credit The Events Calendar team - https://github.com/the-events-calendar/tribe-common
9 *
10 * @since 3.0
11 */
12 interface Provider_Interface {
13 /**
14 * Returns an array in the format used by Swagger 2.0.
15 *
16 * While the structure must conform to that used by v2.0 of Swagger the structure can be that of a full document
17 * or that of a document part.
18 * The intelligence lies in the "gatherer" of informations rather than in the single "providers" implementing this
19 * interface.
20 *
21 * @link http://swagger.io/
22 *
23 * @since 3.0
24 *
25 * @return array An array description of a Swagger supported component.
26 */
27 public function get_documentation();
28 }
29