implement kevaGroupFilter method

This commit is contained in:
ghost 2024-02-22 11:00:16 +02:00
parent c84df1c1be
commit b872804351

View File

@ -761,4 +761,31 @@ class Client
return null; return null;
} }
public function kevaGroupFilter(string $namespace): ?array
{
$this->_id++;
$this->_prepare(
'',
'POST',
[
'method' => 'keva_group_filter',
'params' =>
[
$namespace
],
'id' => $this->_id
]
);
$response = $this->_execute();
if (isset($response['result']) && is_array($response['result']))
{
return $response['result'];
}
return null;
}
} }