1 | <?php |
||
7 | class Core extends WordpressApi { |
||
8 | |||
9 | protected $base_uri = 'https://api.wordpress.org/core/'; |
||
10 | |||
11 | /** |
||
12 | * PHP Serialized |
||
13 | * |
||
14 | * Returns the PHP Serialized version of the current Wordpress Core. |
||
15 | * |
||
16 | * @return mixed |
||
17 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
18 | */ |
||
19 | public function php() { |
||
22 | |||
23 | /** |
||
24 | * JSON |
||
25 | * |
||
26 | * Returns the JSON for the current Wordpress Core. |
||
27 | * |
||
28 | * @return mixed |
||
29 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
30 | */ |
||
31 | public function json() { |
||
34 | |||
35 | /** |
||
36 | * JSON |
||
37 | * |
||
38 | * Returns the JSON for the current Wordpress Core. |
||
39 | * |
||
40 | * @return mixed |
||
41 | * @throws \GuzzleHttp\Exception\GuzzleException |
||
42 | */ |
||
43 | public function stability_check() { |
||
46 | } |