add kevaPending method

This commit is contained in:
ghost 2023-12-06 01:43:56 +02:00
parent a961e5e907
commit 34ffb54c5d

View File

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