1 | <?php |
||
12 | class PublicApi implements ApiTypeInterface |
||
13 | { |
||
14 | |||
15 | CONST TYPE = 'public'; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | protected $url = 'api/documentation'; |
||
21 | |||
22 | /** |
||
23 | * Where to generate the new documentation. |
||
24 | * |
||
25 | * @return string |
||
26 | */ |
||
27 | public function getDocumentationPath() |
||
31 | |||
32 | /** |
||
33 | * @return string |
||
34 | */ |
||
35 | public function getJsonFilePath() |
||
39 | |||
40 | /** |
||
41 | * @return string |
||
42 | */ |
||
43 | public function getType() |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getUrl() |
||
55 | |||
56 | } |
||
57 |