Code cleanup / Quality of Life updates

Adapter::get, post, put, patch and delete all had non-optional parameters for $headers and $query or $body. These have been made optional. I also re-ordered the parameters as $headers was never used while $query/$body were heavily used. I also condensed and removed some duplicate calls so that every call to Adapter::get/post sends that call to Adapter::request. It could use a magic method to do this but it might make it more difficult to test.
This commit is contained in:
Darin Randal
2018-04-12 23:11:04 -04:00
parent 35ce8eadf1
commit cca073c809
31 changed files with 169 additions and 263 deletions

View File

@@ -20,7 +20,7 @@ class User implements API
public function getUserDetails(): \stdClass
{
$user = $this->adapter->get('user', [], []);
$user = $this->adapter->get('user');
$body = json_decode($user->getBody());
return $body->result;
}
@@ -37,7 +37,7 @@ class User implements API
public function updateUserDetails(array $details): \stdClass
{
$response = $this->adapter->patch('user', [], $details);
$response = $this->adapter->patch('user', $details);
return json_decode($response->getBody());
}
}