fixed httpclientinterface class

This commit is contained in:
Tony Roy 2021-03-12 15:30:26 -04:00
commit e79dbad95c

View file

@ -13,7 +13,7 @@ interface HttpClientInterface
* @param array $body * @param array $body
* @return mixed * @return mixed
*/ */
public function get($path="", $body = []); public function get($path="", $query=[]);
/** /**
* @param array $body * @param array $body
@ -33,13 +33,6 @@ interface HttpClientInterface
*/ */
public function delete($path="", $body=[]); public function delete($path="", $body=[]);
/**
* @param $body
* @param $method
* @return mixed
*/
public function request($path="", $body, $method);
/** /**
* @param array $options * @param array $options
*/ */