Refactor SocialClient to update parameter names for clarity by changing 'uuid' to 'signature_uuid' in SETTINGS_DELETE_SIGNATURE and SETTINGS_GET_SIGNATURE methods
https://github.com/nosial/Socialbox-PHP/issues/53
This commit is contained in:
parent
20df727b83
commit
919f75b8ee
1 changed files with 2 additions and 2 deletions
|
@ -1030,7 +1030,7 @@
|
|||
{
|
||||
return $this->sendRequest(
|
||||
new RpcRequest(StandardMethods::SETTINGS_DELETE_SIGNATURE, parameters: [
|
||||
'uuid' => $uuid
|
||||
'signature_uuid' => $uuid
|
||||
])
|
||||
)->getResponse()->getResult();
|
||||
}
|
||||
|
@ -1081,7 +1081,7 @@
|
|||
{
|
||||
return new Signature($this->sendRequest(
|
||||
new RpcRequest(StandardMethods::SETTINGS_GET_SIGNATURE, parameters: [
|
||||
'uuid' => $uuid
|
||||
'signature_uuid' => $uuid
|
||||
])
|
||||
)->getResponse()->getResult());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue