PluginProbe ʕ •ᴥ•ʔ
Pods – Custom Content Types and Fields / 3.3.2
Pods – Custom Content Types and Fields v3.3.2
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 3.2.5 3.2.6 3.2.7 3.2.7.1 3.2.8 3.2.8.1 3.2.8.2 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 3.3.9
pods / src / Pods / REST / Interfaces / Swagger / Provider_Interface.php
pods / src / Pods / REST / Interfaces / Swagger Last commit date
Builder_Interface.php 3 years ago Provider_Interface.php 11 months ago
Provider_Interface.php
29 lines
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 information 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