1 | <?php |
||
7 | class Secret extends WordpressApi |
||
8 | { |
||
9 | protected $base_uri = 'https://api.wordpress.org/secret-key/'; |
||
10 | |||
11 | /** |
||
12 | * Core 1.0. |
||
13 | * |
||
14 | * Returns the version 1.0 definitions. |
||
15 | * |
||
16 | * @return mixed |
||
17 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
18 | */ |
||
19 | public function version_1_0() |
||
23 | |||
24 | /** |
||
25 | * Core 1.1. |
||
26 | * |
||
27 | * Returns the version 1.1 definitions. |
||
28 | * |
||
29 | * @return mixed |
||
30 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
31 | */ |
||
32 | public function version_1_1() |
||
36 | |||
37 | /** |
||
38 | * Core 1.1 Salt. |
||
39 | * |
||
40 | * Returns the version 1.1 salt definitions. |
||
41 | * |
||
42 | * @return mixed |
||
43 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
44 | */ |
||
45 | public function version_1_1_salt() |
||
49 | } |
||
50 |