Browse Source

add all possible kevaFilter attributes with default values

main 1.3.0
ghost 12 months ago
parent
commit
b4db7c5aee
  1. 29
      src/Client.php

29
src/Client.php

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

Loading…
Cancel
Save