Browse Source

add all possible kevaFilter attributes with default values

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

25
src/Client.php

@ -242,7 +242,11 @@ class Client @@ -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 @@ -253,10 +257,25 @@ class Client
[
'method' => 'keva_filter',
'params' =>
(
$stat?
[
$namespace,
$value
],
$regexp,
$maxage,
$from,
$nb,
'stat'
]
:
[
$namespace,
$regexp,
$maxage,
$from,
$nb
]
),
'id' => $this->_id
]
);

Loading…
Cancel
Save