fix filter
This commit is contained in:
parent
33d7069708
commit
557fa1e22b
@ -5,12 +5,12 @@ namespace Itguild\Tables\Filter;
|
|||||||
abstract class Filter
|
abstract class Filter
|
||||||
{
|
{
|
||||||
public string $html = '';
|
public string $html = '';
|
||||||
public string|array $param;
|
public string|array $params;
|
||||||
public string $name;
|
public string $name;
|
||||||
public string $value;
|
public string $value;
|
||||||
public function __construct(array $source)
|
public function __construct(array $source)
|
||||||
{
|
{
|
||||||
$this->param = $source['param'] ?? '';
|
$this->params = $source['param'] ?? '';
|
||||||
$this->name = $source['name'];
|
$this->name = $source['name'];
|
||||||
$this->value = $source['value'] ?? '';
|
$this->value = $source['value'] ?? '';
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user