Browse Source

add kevaPending method

main 1.4.0
ghost 12 months ago
parent
commit
34ffb54c5d
  1. 24
      src/Client.php

24
src/Client.php

@ -347,4 +347,28 @@ class Client
return null; return null;
} }
public function kevaPending(): ?array
{
$this->_id++;
$this->_prepare(
'',
'POST',
[
'method' => 'keva_pending',
'params' => [],
'id' => $this->_id
]
);
$response = $this->_execute();
if (!empty($response) && is_array($response))
{
return $response;
}
return null;
}
} }

Loading…
Cancel
Save