mirror of
https://github.com/kevachat/kevacoin-php.git
synced 2025-01-22 12:34:15 +00:00
add all possible kevaFilter attributes with default values
This commit is contained in:
parent
a885bd6e8d
commit
b4db7c5aee
@ -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…
x
Reference in New Issue
Block a user