add all possible kevaFilter attributes with default values

This commit is contained in:
ghost 2023-12-05 05:37:52 +02:00
parent a885bd6e8d
commit b4db7c5aee

View File

@ -242,7 +242,11 @@ class Client
public function kevaFilter(
string $namespace,
?string $value = ''
?string $regexp = '',
?int $maxage = 36000,
?int $from = 0,
?int $nb = 0,
?bool $stat = false,
): mixed
{
$this->_id++;
@ -253,10 +257,25 @@ class Client
[
'method' => 'keva_filter',
'params' =>
[
$namespace,
$value
],
(
$stat?
[
$namespace,
$regexp,
$maxage,
$from,
$nb,
'stat'
]
:
[
$namespace,
$regexp,
$maxage,
$from,
$nb
]
),
'id' => $this->_id
]
);