Remove unnecessary double quotes

This commit is contained in:
Kleis Auke Wolthuizen
2017-11-21 17:25:41 +01:00
parent 65e4f29bc0
commit 0920fc48b2
21 changed files with 166 additions and 166 deletions

View File

@@ -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());
}
}