Update HttpClientInterface.php
This commit is contained in:
parent
cd12c4b51c
commit
f4b07b31a4
1 changed files with 19 additions and 1 deletions
|
|
@ -13,7 +13,25 @@ interface HttpClientInterface
|
||||||
* @param array $body
|
* @param array $body
|
||||||
* @return mixed
|
* @return mixed
|
||||||
*/
|
*/
|
||||||
public function post($body = []);
|
public function get($path, $body = []);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $body
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function post($path, $body = []);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $body
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function put($path, $body = []);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $body
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function delete($path, $body = []);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param $body
|
* @param $body
|
||||||
|
|
|
||||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue