1 | <?php |
||
10 | class Api extends AbstractApi |
||
11 | { |
||
12 | /** |
||
13 | * @return \Psr\Http\Message\ResponseInterface |
||
14 | * @throws \Http\Client\Exception |
||
15 | */ |
||
16 | public function httpMethodGet() |
||
20 | |||
21 | /** |
||
22 | * @return \Psr\Http\Message\ResponseInterface |
||
23 | * @throws \Http\Client\Exception |
||
24 | */ |
||
25 | public function httpMethodHead() |
||
29 | |||
30 | /** |
||
31 | * @return \Psr\Http\Message\ResponseInterface |
||
32 | * @throws \Http\Client\Exception |
||
33 | */ |
||
34 | public function httpMethodTrace() |
||
38 | |||
39 | /** |
||
40 | * @return \Psr\Http\Message\ResponseInterface |
||
41 | * @throws \Http\Client\Exception |
||
42 | */ |
||
43 | public function httpMethodPost() |
||
47 | |||
48 | /** |
||
49 | * @return \Psr\Http\Message\ResponseInterface |
||
50 | * @throws \Http\Client\Exception |
||
51 | */ |
||
52 | public function httpMethodPut() |
||
56 | |||
57 | /** |
||
58 | * @return \Psr\Http\Message\ResponseInterface |
||
59 | * @throws \Http\Client\Exception |
||
60 | */ |
||
61 | public function httpMethodPatch() |
||
65 | |||
66 | /** |
||
67 | * @return \Psr\Http\Message\ResponseInterface |
||
68 | * @throws \Http\Client\Exception |
||
69 | */ |
||
70 | public function httpMethodDelete() |
||
74 | |||
75 | /** |
||
76 | * @return \Psr\Http\Message\ResponseInterface |
||
77 | * @throws \Http\Client\Exception |
||
78 | */ |
||
79 | public function httpMethodOptions() |
||
83 | } |
||
84 |